/* * Copyright (c) 2008 - 2010 * Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" #import "OFXMLElementBuilder.h" #import "OFXMLElement.h" #import "OFXMLParser.h" #import "OFMutableArray.h" #import "OFAutoreleasePool.h" @implementation OFXMLElementBuilder + elementBuilder { return [[[self alloc] init] autorelease]; } - init { self = [super init]; stack = [[OFMutableArray alloc] init]; return self; } - (void)dealloc { [stack release]; [delegate release]; [super dealloc]; } - (OFObject *)delegate { return [[delegate retain] autorelease]; } - (void)setDelegate: (OFObject *)delegate_ { [delegate_ retain]; [delegate release]; delegate = delegate_; } - (void)parser: (OFXMLParser*)parser didStartElement: (OFString*)name withPrefix: (OFString*)prefix namespace: (OFString*)ns attributes: (OFArray*)attrs { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFXMLElement *elem; OFXMLAttribute **attrs_c; size_t i, attrs_cnt; IMP add_attr; elem = [OFXMLElement elementWithName: name namespace: ns]; attrs_c = [attrs cArray]; attrs_cnt = [attrs count]; add_attr = [elem methodForSelector: @selector(addAttribute:)]; for (i = 0; i < attrs_cnt; i++) { add_attr(elem, @selector(addAttribute:), attrs_c[i]); if ([attrs_c[i] namespace] == nil && [[attrs_c[i] name] isEqual: @"xmlns"]) [elem setDefaultNamespace: [attrs_c[i] stringValue]]; else if ([[attrs_c[i] namespace] isEqual: @"http://www.w3.org/2000/xmlns/"]) [elem setPrefix: [attrs_c[i] name] forNamespace: [attrs_c[i] stringValue]]; } [[stack lastObject] addChild: elem]; [stack addObject: elem]; [pool release]; } - (void)parser: (OFXMLParser*)parser didEndElement: (OFString*)name withPrefix: (OFString*)prefix namespace: (OFString*)ns { if ([stack count] == 1) [delegate elementBuilder: self didBuildElement: [stack firstObject]]; [stack removeNObjects: 1]; } - (void)parser: (OFXMLParser*)parser foundCharacters: (OFString*)str { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; [[stack lastObject] addChild: [OFXMLElement elementWithCharacters: str]]; [pool release]; } - (void)parser: (OFXMLParser*)parser foundCDATA: (OFString*)cdata { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; [[stack lastObject] addChild: [OFXMLElement elementWithCDATA: cdata]]; [pool release]; } - (void)parser: (OFXMLParser*)parser foundComment: (OFString*)comment { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFXMLElement *last = [stack lastObject]; [last addChild: [OFXMLElement elementWithComment: comment]]; [pool release]; } @end