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 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
|
/*
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.
*/
#import "libxmlDocSAXDriver.h"
#import "libxmlSAXLocator.h"
#include <SaxObjC/SaxObjC.h>
#include <SaxObjC/SaxException.h>
#include "common.h"
#include <string.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
@interface libxmlDocSAXDriver(PrivateMethods)
- (void)tearDownParser;
- (BOOL)walkDocumentTree:(xmlDocPtr)_doc;
- (BOOL)processNode:(xmlNodePtr)_node;
- (BOOL)processTextNode:(xmlNodePtr)_node;
- (BOOL)processChildren:(xmlNodePtr)children;
@end
static int _UTF8ToUTF16(unsigned char **sourceStart, unsigned char *sourceEnd,
unichar **targetStart, const unichar *targetEnd);
static inline NSString *xmlCharsToString(const xmlChar *_s) {
static Class NSStringClass = Nil;
if (NSStringClass == Nil)
NSStringClass = [NSString class];
return _s ? [[NSStringClass alloc] initWithUTF8String:(const char*)_s] : nil;
}
static NSString *SaxDeclHandlerProperty =
@"http://xml.org/sax/properties/declaration-handler";
static NSString *SaxLexicalHandlerProperty =
@"http://xml.org/sax/properties/lexical-handler";
@implementation libxmlDocSAXDriver
static libxmlDocSAXDriver *activeDriver = nil;
static void warning(void *udata, const char *msg, ...);
static void error(void *udata, const char *msg, ...);
static void fatalError(void *udata, const char *msg, ...);
static void setLocator(void *udata, xmlSAXLocatorPtr _locator);
- (id)init {
if ((self = [super init])) {
self->encodeEntities = NO;
}
return self;
}
- (void)dealloc {
[self tearDownParser];
[self->lexicalHandler release];
[self->declHandler release];
[self->contentHandler release];
[self->dtdHandler release];
[self->errorHandler release];
[self->entityResolver release];
[super dealloc];
}
/* features & properties */
- (void)setFeature:(NSString *)_name to:(BOOL)_value {
[SaxNotRecognizedException raise:@"FeatureException"
format:@"don't know feature %@", _name];
}
- (BOOL)feature:(NSString *)_name {
[SaxNotRecognizedException raise:@"FeatureException"
format:@"don't know feature %@", _name];
return NO;
}
- (void)setProperty:(NSString *)_name to:(id)_value {
if ([_name isEqualToString:SaxLexicalHandlerProperty]) {
ASSIGN(self->lexicalHandler, _value);
return;
}
if ([_name isEqualToString:SaxDeclHandlerProperty]) {
ASSIGN(self->declHandler, _value);
return;
}
[SaxNotRecognizedException raise:@"PropertyException"
format:@"don't know property %@", _name];
}
- (id)property:(NSString *)_name {
if ([_name isEqualToString:SaxLexicalHandlerProperty])
return self->lexicalHandler;
if ([_name isEqualToString:SaxDeclHandlerProperty])
return self->declHandler;
[SaxNotRecognizedException raise:@"PropertyException"
format:@"don't know property %@", _name];
return nil;
}
/* handlers */
- (void)setDTDHandler:(id<NSObject,SaxDTDHandler>)_handler {
ASSIGN(self->dtdHandler, _handler);
}
- (id<NSObject,SaxDTDHandler>)dtdHandler {
return self->dtdHandler;
}
- (void)setErrorHandler:(id<NSObject,SaxErrorHandler>)_handler {
ASSIGN(self->errorHandler, _handler);
}
- (id<NSObject,SaxErrorHandler>)errorHandler {
return self->errorHandler;
}
- (void)setEntityResolver:(id<NSObject,SaxEntityResolver>)_handler {
ASSIGN(self->entityResolver, _handler);
}
- (id<NSObject,SaxEntityResolver>)entityResolver {
return self->entityResolver;
}
- (void)setContentHandler:(id<NSObject,SaxContentHandler>)_handler {
ASSIGN(self->contentHandler, _handler);
}
- (id<NSObject,SaxContentHandler>)contentHandler {
return self->contentHandler;
}
/* libxml */
- (void)setupParserWithDocumentPath:(NSString *)_path {
static xmlSAXHandler sax;
NSAssert(self->ctxt == NULL, @"DocSAX parser context already setup !");
memcpy(&sax, &xmlDefaultSAXHandler, sizeof(xmlSAXHandler));
sax.error = error;
sax.warning = warning;
sax.fatalError = fatalError;
sax.setDocumentLocator = setLocator;
NSAssert(activeDriver == nil, @"a parser is already running !");
activeDriver = self;
self->ctxt = xmlCreatePushParserCtxt(&sax /* sax */,
NULL /*self*/ /* userdata */,
NULL /* chunk */,
0 /* chunklen */,
[_path cString] /* filename */);
self->doc = NULL;
}
- (void)tearDownParser {
if (activeDriver == self)
activeDriver = nil;
if (self->doc) {
xmlFreeDoc(self->doc);
self->doc = NULL;
}
if (self->ctxt) {
xmlFreeParserCtxt(self->ctxt);
self->ctxt = NULL;
}
}
/* IO */
- (void)pushBytes:(const char *)_bytes count:(unsigned)_len {
if (_len == 0) return;
NSAssert(self->ctxt, @"missing DocSAX parser context");
xmlParseChunk(self->ctxt, _bytes, _len, 0);
}
- (void)pushEOF {
char dummyByte;
xmlParseChunk(self->ctxt, &dummyByte, 0, 1 /* terminate */);
self->doc = ((xmlParserCtxtPtr)ctxt)->myDoc;
}
/* parsing */
- (void)_parseFromData:(NSData *)_data systemId:(NSString *)_sysId {
NSAutoreleasePool *pool;
pool = [[NSAutoreleasePool alloc] init];
/* parse into structure */
[self setupParserWithDocumentPath:_sysId];
[self pushBytes:[_data bytes] count:[_data length]];
[self pushEOF];
if (self->doc == NULL) {
NSLog(@"Couldn't parse file: %@", _sysId);
[self tearDownParser];
}
else {
//NSLog(@"parsed file: %@", _sysId);
[self walkDocumentTree:self->doc];
[self tearDownParser];
}
[pool release];
}
- (void)parseFromSource:(id)_source systemId:(NSString *)_sysId {
if ([_source isKindOfClass:[NSData class]]) {
[self _parseFromData:_source systemId:nil];
return;
}
if ([_source isKindOfClass:[NSString class]]) {
[self _parseFromData:[_source dataUsingEncoding:NSISOLatin1StringEncoding]
systemId:nil];
return;
}
if ([_source isKindOfClass:[NSURL class]]) {
NSData *data;
data = [_source isFileURL]
? (NSData *)[NSData dataWithContentsOfMappedFile:[_source path]]
: [_source resourceDataUsingCache:YES];
[self _parseFromData:data systemId:[_source absoluteString]];
return;
}
{
SaxParseException *e;
NSDictionary *ui;
ui = [[NSDictionary alloc] initWithObjectsAndKeys:
_source ? _source : (id)@"<nil>", @"source",
self, @"parser",
nil];
e = (id)[SaxParseException exceptionWithName:@"SaxIOException"
reason:@"cannot handle data-source"
userInfo:ui];
[ui release]; ui = nil;
[self->errorHandler fatalError:e];
}
}
- (void)parseFromSource:(id)_source {
if ([_source isKindOfClass:[NSString class]])
[self parseFromSource:_source systemId:@"<string>"];
else if ([_source isKindOfClass:[NSData class]])
[self parseFromSource:_source systemId:@"<data>"];
else if ([_source isKindOfClass:[NSURL class]])
[self parseFromSource:_source systemId:[_source absoluteString]];
else
[self parseFromSource:_source systemId:@"<memory>"];
}
- (void)parseFromSystemId:(NSString *)_sysId {
NSAutoreleasePool *pool;
NSData *data;
if (![_sysId hasPrefix:@"file://"]) {
/* exception */
return;
}
pool = [[NSAutoreleasePool alloc] init];
/* cut off file:// */
_sysId = [_sysId substringFromIndex:7];
/* load data */
data = [NSData dataWithContentsOfFile:_sysId];
[self _parseFromData:data systemId:_sysId];
[pool release];
}
/* process attribute nodes */
- (SaxAttributes *)processAttributes:(xmlAttrPtr)_attributes {
xmlAttrPtr attribute;
SaxAttributes *attributes;
if (_attributes == NULL)
/* nothing to process */
return nil;
/* setup or clear attribute cache */
attributes = [[SaxAttributes alloc] init];
/* add attributes */
for (attribute = _attributes; attribute; attribute = attribute->next) {
NSString *name;
NSString *value;
NSString *nsuri;
#if 0
printf("attr name '%s' has NS '%s'\n",
attribute->name, attribute->ns ? "yes" : "no");
#endif
name = xmlCharsToString(attribute->name);
value = @"";
if (attribute->children) {
xmlChar *t;
if ((t = xmlNodeListGetString(doc, attribute->children, 0))) {
value = xmlCharsToString(t);
free(t); /* should be xmlFree ?? */
}
}
nsuri = (attribute->ns != NULL)
? xmlCharsToString(attribute->ns->href)
: (NSString *)nil;
[attributes addAttribute:name
uri:nsuri
rawName:name
type:@"CDATA" value:value];
[nsuri release]; nsuri = nil;
[name release]; name = nil;
[value release]; value = nil;
}
return attributes;
}
/* walking the tree, generating SAX events */
- (BOOL)_resolveEntityReferences {
return YES;
}
- (BOOL)processEntityRefNode:(xmlNodePtr)_node {
if ([self _resolveEntityReferences])
return [self processTextNode:_node];
else {
NSString *refName;
NSString *entityValue;
refName = xmlCharsToString(_node->name);
entityValue = xmlCharsToString(_node->content);
#if 0
NSLog(@"%s:%i: Ignoring entity ref: '%@' %s\n",
__PRETTY_FUNCTION__, __LINE__, refName, _node->content);
#endif
[entityValue release];
[refName release];
return YES;
}
}
- (BOOL)processDocumentNode:(xmlNodePtr)node {
BOOL result;
[self->contentHandler startDocument];
[self->contentHandler
startPrefixMapping:@""
uri:@"http://www.w3.org/XML/1998/namespace"];
result = [self processChildren:node->children];
[self->contentHandler endPrefixMapping:@""];
[self->contentHandler endDocument];
return result;
}
- (BOOL)processTextNode:(xmlNodePtr)_node {
static unichar c = '\0';
if (self->contentHandler == nil)
return YES;
if (_node->content) {
xmlChar *chars;
if (self->encodeEntities) {
/* should use the DocSAX encoding routine (htmlEncodeEntities) ??? */
chars = xmlEncodeEntitiesReentrant(self->doc, _node->content);
}
else
chars = _node->content;
if (chars == NULL) {
[self->contentHandler characters:&c length:0];
}
else {
void *data, *ts;
unsigned len;
len = strlen((char *)chars);
data = ts = calloc(len + 1, sizeof(unichar)); /* GC ?! */
if (_UTF8ToUTF16((void *)&chars, (void *)(chars + len),
(void *)&ts, ts + (len * sizeof(unichar)))) {
free(data);
NSLog(@"ERROR(%s:%i): couldn't convert UTF8 to UTF16 !",
__PRETTY_FUNCTION__, __LINE__);
return NO;
}
[self->contentHandler characters:data length:(ts - data)];
free(data);
}
}
else
[self->contentHandler characters:&c length:0];
return YES;
}
- (BOOL)processCommentNode:(xmlNodePtr)_node {
unichar c = '\0';
if (self->lexicalHandler == nil)
return YES;
if (_node->content) {
xmlChar *chars;
/* uses the DocSAX encoding routine !!!!!!!!!! */
chars = xmlEncodeEntitiesReentrant(self->doc, _node->content);
if (chars == NULL) {
[self->lexicalHandler comment:&c length:0];
}
else {
void *data, *ts;
unsigned len;
len = strlen((const char *)chars);
data = ts = calloc(len + 1, sizeof(unichar)); /* GC ?! */
if (_UTF8ToUTF16((void *)&chars, (void *)(chars + len),
(void *)&ts, ts + (len * sizeof(unichar)))) {
free(data);
NSLog(@"ERROR(%s:%i): couldn't convert UTF8 to UTF16 !",
__PRETTY_FUNCTION__, __LINE__);
return NO;
}
[self->lexicalHandler comment:data length:(ts - data)];
free(data);
}
}
else
[self->lexicalHandler comment:&c length:0];
return YES;
}
- (BOOL)processDTDNode:(xmlNodePtr)node {
/* do nothing with DTD nodes .. */
return YES;
}
- (BOOL)processEntityNode:(xmlNodePtr)node {
/* do nothing with entity nodes .. */
NSLog(@"%s:%i: ignoring entity node (name='%s') ...",
__PRETTY_FUNCTION__, __LINE__, node->name);
return YES;
}
- (BOOL)processPINode:(xmlNodePtr)node {
NSString *piName;
NSString *piValue;
piName = xmlCharsToString(node->name);
piValue = xmlCharsToString(node->content);
[self->contentHandler processingInstruction:piName data:piValue];
[piName release];
[piValue release];
return YES;
}
- (BOOL)processElementNode:(xmlNodePtr)node {
id<NSObject,SaxAttributes> attrs;
NSString *tagName;
NSString *nsuri;
BOOL result;
self->depth++;
tagName = xmlCharsToString(node->name);
nsuri = (node->ns != NULL)
? xmlCharsToString(node->ns->href)
: (NSString *)nil;
attrs = [self processAttributes:node->properties];
[self->contentHandler
startElement:tagName
namespace:nsuri
rawName:tagName
attributes:attrs];
[attrs release]; attrs = nil;
result = [self processChildren:node->children];
[self->contentHandler
endElement:tagName
namespace:nsuri
rawName:tagName];
self->depth--;
[nsuri release]; nsuri = nil;
[tagName release]; tagName = nil;
[attrs release]; attrs = nil;
return result;
}
- (BOOL)processChildren:(xmlNodePtr)children {
xmlNodePtr node;
if (children == NULL)
return YES;
for (node = children; node; node = node->next) {
[self processNode:node];
}
return YES;
}
- (BOOL)processNode:(xmlNodePtr)_node {
switch(_node->type) {
case XML_ELEMENT_NODE:
return [self processElementNode:_node];
case XML_ATTRIBUTE_NODE:
NSLog(@"invalid place for attribute-node !");
return NO;
case XML_TEXT_NODE:
return [self processTextNode:_node];
case XML_CDATA_SECTION_NODE:
return [self processTextNode:_node];
case XML_ENTITY_REF_NODE:
return [self processEntityRefNode:_node];
case XML_ENTITY_NODE:
return [self processEntityNode:_node];
case XML_PI_NODE:
return [self processPINode:_node];
case XML_COMMENT_NODE:
return [self processCommentNode:_node];
case XML_DOCUMENT_NODE:
return [self processDocumentNode:_node];
case XML_DTD_NODE:
return [self processDTDNode:_node];
default:
NSLog(@"WARNING: UNKNOWN node type %i\n", _node->type);
break;
}
return NO;
}
- (BOOL)walkDocumentTree:(xmlDocPtr)_doc {
int type;
BOOL result;
type = ((xmlDocPtr)self->doc)->type;
((xmlDocPtr)self->doc)->type = XML_DOCUMENT_NODE;
result = [self processNode:(xmlNodePtr)self->doc];
((xmlDocPtr)self->doc)->type = type;
return result;
}
/* callbacks */
static SaxParseException *
mkException(libxmlDocSAXDriver *self, NSString *key,
const char *msg, va_list va)
{
NSString *s, *reason;
NSDictionary *ui;
SaxParseException *e;
int count = 0, i;
id keys[7], values[7];
id tmp;
NSRange r;
s = [NSString stringWithCString:msg];
s = [[[NSString alloc]
initWithFormat:s arguments:va]
autorelease];
r = [s rangeOfString:@"\n"];
reason = (r.length > 0)
? [s substringToIndex:r.location]
: s;
if ([reason length] == 0)
reason = @"unknown reason";
keys[0] = @"parser"; values[0] = self; count++;
keys[1] = @"depth"; values[1] = [NSNumber numberWithInt:self->depth]; count++;
if ([s length] > 0) {
keys[count] = @"errorMessage";
values[count] = s;
count++;
}
// NSLog(@"locator: %@", self->locator);
if ((i = [self->locator lineNumber]) >= 0) {
keys[count] = @"line";
values[count] = [NSNumber numberWithInt:i];
count++;
}
if ((i = [self->locator columnNumber]) >= 0) {
keys[count] = @"column";
values[count] = [NSNumber numberWithInt:i];
count++;
}
if ((tmp = [self->locator publicId])) {
keys[count] = @"publicId";
values[count] = tmp;
count++;
}
if ((tmp = [self->locator systemId])) {
keys[count] = @"systemId";
values[count] = tmp;
count++;
}
ui = [NSDictionary dictionaryWithObjects:values forKeys:keys count:count];
e = (id)[SaxParseException exceptionWithName:key
reason:reason
userInfo:ui];
return e;
}
static void warning(void *udata, const char *msg, ...) {
va_list args;
SaxParseException *e;
NSCAssert(activeDriver, @"no driver is active !");
va_start(args, msg);
e = mkException(activeDriver, @"SAXWarning", msg, args);
va_end(args);
[activeDriver->errorHandler warning:e];
}
static void error(void *udata, const char *msg, ...) {
va_list args;
SaxParseException *e;
NSCAssert(activeDriver, @"no driver is active !");
va_start(args, msg);
e = mkException(activeDriver, @"SAXError", msg, args);
va_end(args);
[activeDriver->errorHandler error:e];
}
static void fatalError(void *udata, const char *msg, ...) {
va_list args;
SaxParseException *e;
NSCAssert(activeDriver, @"no driver is active !");
va_start(args, msg);
e = mkException(activeDriver, @"SAXFatalError", msg, args);
va_end(args);
[activeDriver->errorHandler fatalError:e];
}
static void setLocator(void *udata, xmlSAXLocatorPtr _locator) {
NSCAssert(activeDriver, @"no driver is active !");
[activeDriver->locator release];
activeDriver->locator = [[libxmlSAXLocator alloc]
initWithSaxLocator:_locator
parser:activeDriver];
activeDriver->locator->ctx = activeDriver->ctxt;
[activeDriver->contentHandler setDocumentLocator:activeDriver->locator];
}
@end /* libxmlDocSAXDriver */
#include "unicode.h"
|