forked from niftools/nifskope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kfmxml.cpp
275 lines (242 loc) · 7.71 KB
/
kfmxml.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/***** BEGIN LICENSE BLOCK *****
BSD License
Copyright (c) 2005-2012, NIF File Format Library and Tools
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the NIF File Format Library and Tools project may not be
used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***** END LICENCE BLOCK *****/
#include "kfmmodel.h"
#include <QtXml>
#include <QApplication>
#include <QMessageBox>
#define err( X ) { errorStr = X; return false; }
QReadWriteLock KfmModel::XMLlock;
QList<quint32> KfmModel::supportedVersions;
QHash<QString,NifBlock*> KfmModel::compounds;
class KfmXmlHandler : public QXmlDefaultHandler
{
Q_DECLARE_TR_FUNCTIONS(KfmXmlHandler)
public:
KfmXmlHandler()
{
depth = 0;
elements << "niftoolsxml" << "version" << "compound" << "add";
blk = 0;
}
int depth;
int stack[10];
QStringList elements;
QString errorStr;
NifBlock * blk;
int current() const
{
return stack[depth-1];
}
void push( int x )
{
stack[depth++] = x;
}
int pop()
{
return stack[--depth];
}
bool startElement( const QString &, const QString &, const QString & name, const QXmlAttributes & list )
{
if ( depth >= 8 ) err( tr("error maximum nesting level exceeded") );
int x = elements.indexOf( name );
if ( x < 0 ) err( tr("error unknown element") + " '" + name + "'" );
if ( depth == 0 )
{
if ( x != 0 ) err( tr("this is not a niftoolsxml file") );
push( x );
return true;
}
int v;
switch ( current() )
{
case 0:
if ( ! ( x == 1 || x == 2 ) ) err( tr("expected compound or version got %1 instead").arg(name) );
push( x );
switch ( x )
{
case 1:
v = KfmModel::version2number( list.value( "num" ).trimmed() );
if ( v != 0 && ! list.value( "num" ).isEmpty() )
KfmModel::supportedVersions.append( v );
else
err( tr("invalid version string") );
break;
case 2:
if ( x == 2 && NifValue::isValid( NifValue::type( list.value( "name" ) ) ) )
err( tr("compound %1 is already registered as internal type").arg(list.value( "name" )) );
if ( ! blk ) blk = new NifBlock;
blk->id = list.value( "name" );
break;
}
break;
case 1:
err( tr("version tag must not contain any sub tags") );
break;
case 2:
if ( x == 3 )
{
NifData data(
list.value( "name" ),
list.value( "type" ),
list.value( "template" ),
NifValue( NifValue::type( list.value( "type" ) ) ),
list.value( "arg" ),
list.value( "arr1" ),
list.value( "arr2" ),
list.value( "cond" ),
KfmModel::version2number( list.value( "ver1" ) ),
KfmModel::version2number( list.value( "ver2" ) ),
( list.value( "abstract" ) == "1" )
);
if ( data.name().isEmpty() || data.type().isEmpty() ) err( tr("add needs at least name and type attributes") );
if ( blk ) blk->types.append( data );
}
else
err( tr("only add tags allowed in compound type declaration") );
push( x );
break;
default:
err( tr("error unhandled tag %1 in %2").arg(name).arg(elements.value( current() )) );
break;
}
return true;
}
bool endElement( const QString &, const QString &, const QString & name )
{
if ( depth <= 0 ) err( tr("mismatching end element tag for element ") + name );
int x = elements.indexOf( name );
if ( pop() != x ) err( tr("mismatching end element tag for element ") + elements.value( current() ) );
switch ( x )
{
case 2:
if ( blk )
{
if ( ! blk->id.isEmpty() )
{
switch ( x )
{
case 2: KfmModel::compounds.insert( blk->id, blk ); break;
}
blk = 0;
}
else
{
delete blk;
blk = 0;
err( tr("invalid %1 declaration: name is empty").arg(elements.value( x )) );
}
}
break;
}
return true;
}
bool checkType( const NifData & data )
{
return KfmModel::compounds.contains( data.type() ) || NifValue::type( data.type() ) != NifValue::tNone || data.type() == "TEMPLATE";
}
bool checkTemp( const NifData & data )
{
return data.temp().isEmpty() || NifValue::type( data.temp() ) != NifValue::tNone || data.temp() == "TEMPLATE";
}
bool endDocument()
{ // make a rough check of the maps
foreach ( QString key, KfmModel::compounds.keys() )
{
NifBlock * c = KfmModel::compounds.value( key );
foreach ( NifData data, c->types )
{
if ( ! checkType( data ) )
err( tr("compound type %1 referes to unknown type %2").arg(key).arg(data.type()) );
if ( ! checkTemp( data ) )
err( tr("compound type %1 refers to unknown template type %2").arg(key).arg(data.temp()));
if ( data.type() == key )
err( tr("compound type %1 contains itself").arg(key) );
}
}
return true;
}
QString errorString() const
{
return errorStr;
}
bool fatalError( const QXmlParseException & exception )
{
if ( errorStr.isEmpty() ) errorStr = tr("Syntax error");
errorStr.prepend( tr("XML parse error (line %1):<br>").arg( exception.lineNumber() ) );
return false;
}
};
bool KfmModel::loadXML()
{
QDir dir( QApplication::applicationDirPath() );
QString fname = dir.filePath( "kfm.xml" ); // last resort
// Try local copy first, docsys, relative from nifskope/release, relative from ../nifskope-build/release linux data dir
QStringList xmlList( QStringList()
<< "kfm.xml"
<< "docsys/kfmxml/kfm.xml"
<< "../docsys/kfmxml/kfm.xml"
<< "../../docsys/kfmxml/kfm.xml"
<< "../nifskope/docsys/kfmxml/kfm.xml"
<< "../../nifskope/docsys/kfmxml/kfm.xml"
<< "/usr/share/nifskope/kfm.xml" );
foreach( QString str, xmlList )
{
if ( dir.exists( str ) )
{
fname = dir.filePath( str );
break;
}
}
QString result = KfmModel::parseXmlDescription( fname );
if ( ! result.isEmpty() )
{
QMessageBox::critical( 0, "NifSkope", result );
return false;
}
return true;
}
QString KfmModel::parseXmlDescription( const QString & filename )
{
QWriteLocker lck( &XMLlock );
qDeleteAll( compounds ); compounds.clear();
supportedVersions.clear();
QFile f( filename );
if ( ! f.open( QIODevice::ReadOnly | QIODevice::Text ) )
return tr("error: couldn't open xml description file: %1").arg( filename );
KfmXmlHandler handler;
QXmlSimpleReader reader;
reader.setContentHandler( &handler );
reader.setErrorHandler( &handler );
QXmlInputSource source( &f );
reader.parse( source );
if ( ! handler.errorString().isEmpty() )
{
qDeleteAll( compounds ); compounds.clear();
supportedVersions.clear();
}
return handler.errorString();
}