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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
|
/*
Copyright (C) 2000-2005 SKYRIX Software AG
This file is part of SOPE.
SOPE is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with SOPE; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#include "DOMSaxHandler.h"
#include "DOMImplementation.h"
#include "DOMDocument.h"
#include "DOMElement.h"
#include "common.h"
#include <SaxObjC/SaxObjC.h>
@interface NSObject(LineInfoProtocol)
- (void)setLine:(int)_line;
@end
@implementation DOMSaxHandler
static BOOL printErrors = NO;
- (id)initWithDOMImplementation:(id)_domImpl {
if ((self = [super init])) {
self->dom = [_domImpl retain];
self->maxErrorCount = 100; // this also includes NPSOBJ in HTML !
}
return self;
}
- (id)init {
static id idom = nil;
if (idom == nil)
idom = [[NGDOMImplementation alloc] init];
return [self initWithDOMImplementation:idom];
}
- (void)dealloc {
[self->document release];
[self->dom release];
[self->locator release];
[self->fatals release];
[self->errors release];
[self->warnings release];
[super dealloc];
}
- (void)setDocumentLocator:(id<NSObject,SaxLocator>)_loc {
ASSIGN(self->locator, _loc);
}
- (id)document {
return self->document;
}
- (void)clear {
ASSIGN(self->document, (id)nil);
[self->fatals removeAllObjects];
[self->errors removeAllObjects];
[self->warnings removeAllObjects];
self->errorCount = 0;
}
- (int)errorCount {
return self->errorCount;
}
- (int)fatalErrorCount {
return [self->fatals count];
}
- (int)warningCount {
return [self->warnings count];
}
- (int)maxErrorCount {
return self->maxErrorCount;
}
- (NSArray *)warnings {
return [[self->warnings copy] autorelease];
}
- (NSArray *)errors {
return [[self->errors copy] autorelease];
}
- (NSArray *)fatalErrors {
return [[self->fatals copy] autorelease];
}
/* attributes */
- (id)_nodeForSaxAttrWithName:(NSString *)_name
namespace:(NSString *)_uri
rawName:(NSString *)_rawName
type:(NSString *)_saxType value:(NSString *)_saxValue
{
id attr;
NSString *nsPrefix;
attr = [self->document createAttribute:_name namespaceURI:_uri];
if (attr == nil)
return nil;
nsPrefix = nil;
if (_uri) {
NSRange r;
r = [_rawName rangeOfString:@":"];
if (r.length > 0)
nsPrefix = [_rawName substringToIndex:r.location];
}
if (nsPrefix)
[attr setPrefix:nsPrefix];
/* add content to attribute */
if ([_saxType isEqualToString:@"CDATA"] || (_saxType == nil)) {
id content;
NSAssert(self->document, @"missing document object");
if ((content = [self->document createTextNode:_saxValue]))
[attr appendChild:content];
else
NSLog(@"couldn't create text node !");
}
else
NSLog(@"unsupported sax attr type '%@' !", _saxType);
return attr;
}
/* document */
- (void)startDocument {
id docType;
[self->document release]; self->document = nil;
self->errorCount = 0;
self->tagDepth = 0;
docType = [self->dom createDocumentType:nil
publicId:[self->locator publicId]
systemId:[self->locator systemId]];
self->document = [self->dom createDocumentWithName:nil
namespaceURI:nil
documentType:docType];
self->document = [self->document retain];
//NSLog(@"started doc: %@", self->document);
self->currentElement = self->document;
}
- (void)endDocument {
self->currentElement = nil;
}
- (void)startPrefixMapping:(NSString *)_prefix uri:(NSString *)_uri {
//printf("ns-map: %s=%s\n", [_prefix cString], [_uri cString]);
}
- (void)endPrefixMapping:(NSString *)_prefix {
//printf("ns-unmap: %s\n", [_prefix cString]);
}
- (void)startElement:(NSString *)_localName
namespace:(NSString *)_ns
rawName:(NSString *)_rawName
attributes:(id<SaxAttributes>)_attrs
{
id elem;
NSString *nsPrefix;
self->tagDepth++;
elem = [self->document createElement:_localName namespaceURI:_ns];
if (elem == nil) {
NSLog(@"%s: couldn't create element for tag '%@'", __PRETTY_FUNCTION__,
_rawName);
return;
}
if ([elem respondsToSelector:@selector(setLine:)])
[elem setLine:[self->locator lineNumber]];
if (_ns) {
NSRange r;
r = [_rawName rangeOfString:@":"];
nsPrefix = (r.length > 0)
? [_rawName substringToIndex:r.location]
: (NSString *)nil;
}
else
nsPrefix = nil;
if (nsPrefix)
[elem setPrefix:nsPrefix];
NSAssert(self->currentElement, @"no current element !");
[self->currentElement appendChild:elem];
self->currentElement = elem;
/* process attributes */
{
unsigned i, count;
for (i = 0, count = [_attrs count]; i < count; i++) {
id attr;
// NSLog(@"attr %@", [_attrs nameAtIndex:i]);
attr = [self _nodeForSaxAttrWithName:[_attrs nameAtIndex:i]
namespace:[_attrs uriAtIndex:i]
rawName:[_attrs rawNameAtIndex:i]
type:[_attrs typeAtIndex:i]
value:[_attrs valueAtIndex:i]];
if (attr == nil) {
NSLog(@"couldn't create attribute for SAX attr %@, element %@",
attr, elem);
continue;
}
/* add node to element */
if ([elem setAttributeNodeNS:attr] == nil)
NSLog(@"couldn't add attribute %@ to element %@", attr, elem);
}
}
}
- (void)endElement:(NSString *)_localName
namespace:(NSString *)_ns
rawName:(NSString *)_rawName
{
id parent;
parent = [self->currentElement parentNode];
#if DEBUG
NSAssert1(parent, @"no parent for current element %@ !",
self->currentElement);
#endif
self->currentElement = parent;
self->tagDepth--;
}
- (void)characters:(unichar *)_chars length:(NSUInteger)_len {
id charNode;
NSString *data;
data = [[NSString alloc] initWithCharacters:_chars length:_len];
charNode = [self->document createTextNode:data];
[data release]; data = nil;
[self->currentElement appendChild:charNode];
}
- (void)ignorableWhitespace:(unichar *)_chars length:(NSUInteger)_len {
}
- (void)processingInstruction:(NSString *)_pi data:(NSString *)_data {
id piNode;
piNode = [self->document createProcessingInstruction:_pi data:_data];
[self->currentElement appendChild:piNode];
}
#if 0
- (xmlEntityPtr)getEntity:(NSString *)_name {
NSLog(@"get entity %@", _name);
return NULL;
}
- (xmlEntityPtr)getParameterEntity:(NSString *)_name {
NSLog(@"get para entity %@", _name);
return NULL;
}
#endif
/* lexical handler */
- (void)comment:(unichar *)_chars length:(int)_len {
id commentNode;
NSString *data;
if (_len == 0)
return;
data = [[NSString alloc] initWithCharacters:_chars length:_len];
commentNode = [self->document createComment:data];
[data release]; data = nil;
[self->currentElement appendChild:commentNode];
}
- (void)startDTD:(NSString *)_name
publicId:(NSString *)_pub
systemId:(NSString *)_sys
{
self->inDTD = YES;
}
- (void)endDTD {
self->inDTD = NO;
}
- (void)startCDATA {
self->inCDATA = YES;
}
- (void)endCDATA {
self->inCDATA = NO;
}
/* entities */
- (id)resolveEntityWithPublicId:(NSString *)_pubId
systemId:(NSString *)_sysId
{
NSLog(@"shall resolve entity with '%@' '%@'", _pubId, _sysId);
return nil;
}
/* errors */
- (void)warning:(SaxParseException *)_exception {
NSString *sysId;
int line;
sysId = [[_exception userInfo] objectForKey:@"systemId"];
line = [[[_exception userInfo] objectForKey:@"line"] intValue];
NSLog(@"DOM XML WARNING(%@:%i): %@", sysId, line, [_exception reason]);
if (self->warnings == nil)
self->warnings = [[NSMutableArray alloc] initWithCapacity:32];
if (_exception)
[self->warnings addObject:_exception];
}
- (void)error:(SaxParseException *)_exception {
self->errorCount++;
if (printErrors) {
NSString *sysId;
int line;
sysId = [[_exception userInfo] objectForKey:@"systemId"];
line = [[[_exception userInfo] objectForKey:@"line"] intValue];
NSLog(@"DOM XML ERROR(%@:%i[%@]): %@ (errcount=%i,max=%i)", sysId, line,
[[_exception userInfo] objectForKey:@"parser"],
[_exception reason],
self->errorCount, self->maxErrorCount);
}
if (self->errors == nil)
self->errors = [[NSMutableArray alloc] initWithCapacity:32];
if (_exception)
[self->errors addObject:_exception];
}
- (void)fatalError:(SaxParseException *)_exception {
NSString *sysId;
int line;
sysId = [[_exception userInfo] objectForKey:@"systemId"];
line = [[[_exception userInfo] objectForKey:@"line"] intValue];
NSLog(@"DOM XML FATAL(%@:%i[%@]): %@", sysId, line,
[[_exception userInfo] objectForKey:@"parser"],
[_exception reason]);
if (self->fatals == nil)
self->fatals = [[NSMutableArray alloc] initWithCapacity:32];
if (_exception)
[self->fatals addObject:_exception];
[_exception raise];
}
/* DTD */
- (void)notationDeclaration:(NSString *)_name
publicId:(NSString *)_pubId
systemId:(NSString *)_sysId
{
NSLog(@"decl: notation %@ pub=%@ sys=%@", _name, _pubId, _sysId);
}
- (void)unparsedEntityDeclaration:(NSString *)_name
publicId:(NSString *)_pubId
systemId:(NSString *)_sysId
notationName:(NSString *)_notName
{
NSLog(@"decl: unparsed entity %@ pub=%@ sys=%@ not=%@",
_name, _pubId, _sysId, _notName);
}
/* decl */
- (void)attributeDeclaration:(NSString *)_attributeName
elementName:(NSString *)_elementName
type:(NSString *)_type
defaultType:(NSString *)_defType
defaultValue:(NSString *)_defValue
{
NSLog(@"decl: attr %@[%@] type '%@' default '%@'[%@]",
_attributeName, _elementName, _type, _defValue, _defType);
}
- (void)elementDeclaration:(NSString *)_name contentModel:(NSString *)_model {
NSLog(@"decl: element %@ model %@", _name, _model);
}
- (void)externalEntityDeclaration:(NSString *)_name
publicId:(NSString *)_pub
systemId:(NSString *)_sys
{
NSLog(@"decl: e-entity %@ pub %@ sys %@", _name, _pub, _sys);
}
- (void)internalEntityDeclaration:(NSString *)_name value:(NSString *)_value {
NSLog(@"decl: i-entity %@ value %@", _name, _value);
}
@end /* DOMSaxHandler */
@implementation DOMSaxHandler(SubHandler)
- (NSUInteger)tagDepth {
return self->tagDepth;
}
- (id)object {
return [self document];
}
- (void)setNamespaces:(NSString *)_namespaces {
// not yet implemented
}
@end /* DOMSaxHandler(SubHandler) */
|