mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37003 72102866-910b-0410-8b05-ffd578937521
223 lines
7.2 KiB
Objective-C
223 lines
7.2 KiB
Objective-C
/* Private header for libxml2 wrapping components
|
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
|
|
|
Written by: Richard Frith-Macdonald <rfm@gnu.org>
|
|
Created: Februrary 2009
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
This library 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 3 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02111 USA.
|
|
*/
|
|
|
|
#ifndef _INCLUDED_NSXMLPRIVATE_H
|
|
#define _INCLUDED_NSXMLPRIVATE_H
|
|
|
|
#import "common.h"
|
|
|
|
#ifdef HAVE_LIBXML
|
|
|
|
/* Avoid problems on systems where the xml headers use 'id'
|
|
*/
|
|
#define id GSXMLID
|
|
|
|
/* libxml headers */
|
|
#include <libxml/tree.h>
|
|
#include <libxml/entities.h>
|
|
#include <libxml/parser.h>
|
|
#include <libxml/parserInternals.h>
|
|
#include <libxml/HTMLparser.h>
|
|
#include <libxml/xmlmemory.h>
|
|
#include <libxml/xmlsave.h>
|
|
#include <libxml/xpath.h>
|
|
#include <libxml/xpathInternals.h>
|
|
|
|
#ifdef HAVE_LIBXSLT
|
|
#include <libxslt/xslt.h>
|
|
#include <libxslt/xsltInternals.h>
|
|
#include <libxslt/transform.h>
|
|
#include <libxslt/xsltutils.h>
|
|
#endif /* HAVE_LIBXSLT */
|
|
|
|
#undef id
|
|
|
|
#endif /* HAVE_LIBXML */
|
|
|
|
#define EXPOSE_NSXMLDTD_IVARS 1
|
|
#define EXPOSE_NSXMLDTDNode_IVARS 1
|
|
#define EXPOSE_NSXMLDocument_IVARS 1
|
|
#define EXPOSE_NSXMLElement_IVARS 1
|
|
#define EXPOSE_NSXMLNode_IVARS 1
|
|
|
|
/*
|
|
* Macro to cast string to correct type for libxml2
|
|
*/
|
|
#define XMLSTRING(X) ((const unsigned char*)[X UTF8String])
|
|
|
|
inline static unsigned char *XMLStringCopy(NSString *source)
|
|
{
|
|
char *xmlstr;
|
|
unsigned int len;
|
|
|
|
len = [source maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding] + 1;
|
|
if (len == 0)
|
|
return NULL;
|
|
xmlstr = malloc(len);
|
|
[source getCString:xmlstr maxLength:len encoding:NSUTF8StringEncoding];
|
|
return (unsigned char *)xmlstr;
|
|
}
|
|
|
|
inline static NSString*
|
|
StringFromXMLStringPtr(const unsigned char *bytes)
|
|
{
|
|
NSString *str;
|
|
unsigned int length;
|
|
|
|
if (bytes == NULL)
|
|
return @"";
|
|
|
|
length = strlen((char *)bytes);
|
|
str = [[NSString alloc] initWithBytes: bytes
|
|
length: length
|
|
encoding: NSUTF8StringEncoding];
|
|
return AUTORELEASE(str);
|
|
}
|
|
|
|
inline static NSString*
|
|
StringFromXMLString(const unsigned char *bytes, unsigned length)
|
|
{
|
|
NSString *str;
|
|
|
|
if (bytes == NULL)
|
|
return @"";
|
|
|
|
str = [[NSString alloc] initWithBytes: bytes
|
|
length: length
|
|
encoding: NSUTF8StringEncoding];
|
|
return AUTORELEASE(str);
|
|
}
|
|
|
|
/* Instance variables for NSXMLNode. This macro needs to be defined before
|
|
* the NSXMLNode.h header is imported and before GSInternal.h is imported.
|
|
*
|
|
* The 'kind' tells us what sort of node this is.
|
|
* The 'node' points to the underlying libxml2 node structure.
|
|
* The 'options' field is a bitmask of options for this node.
|
|
* The 'objectValue' is the object value set for the node.
|
|
* The 'subNodes' array is used to retain the objects pointed to by subnodes.
|
|
*
|
|
* When we create an Objective-C object for a node we also create objects
|
|
* for all parents up to the root object. (Reusing existing once as we find
|
|
* them in the _private points of parent nodes)
|
|
* This adds the object to the subnode array of the parent object, retaining
|
|
* the object in this process.
|
|
* This means a document object will retain all the objects we have created
|
|
* for its node tree, but we don't have to create all these objects at once.
|
|
* When we remove an object from its parent we always call the detach method.
|
|
* Here we unlink the libxml2 node and remove the object from its parent's
|
|
* subnode array, This will release the object.
|
|
* When an object gets deallocated it detaches all the subnodes, releasing
|
|
* them in the process and then it frees the node. That way each object takes
|
|
* care of freeing its own node, but nodes that don't have objects attached
|
|
* to them will get freed when their parent object (e.g. the NSXMLDocument)
|
|
* gets deallocated.
|
|
* For namespace nodes special rules apply as they don't have a parent pointer.
|
|
*
|
|
* URI is probably not needed at all ... I'm not sure
|
|
*/
|
|
#define GS_NSXMLNode_IVARS \
|
|
NSUInteger kind; \
|
|
GS_XMLNODETYPE *node; \
|
|
NSUInteger options; \
|
|
id objectValue; \
|
|
NSMutableArray *subNodes;
|
|
|
|
|
|
/* When using the non-fragile ABI, the instance variables are exposed to the
|
|
* compiler within the class declaration, so we don't need to incorporate
|
|
* superclass variables into the subclass declaration.
|
|
* But with the fragile ABI we need to allocate a single internal structure
|
|
* containing the private variables for both the subclass and the superclass.
|
|
*/
|
|
#if GS_NONFRAGILE
|
|
#define SUPERIVARS(X)
|
|
#else
|
|
#define SUPERIVARS(X) X
|
|
#endif
|
|
|
|
/* Instance variables for NSXMLDocument with/without the instance
|
|
* variable 'inherited' from NSXMLNode.
|
|
* This macro needs to be defined before the NSXMLDocument.h header
|
|
* is imported and before GSInternal.h is imported.
|
|
*/
|
|
#define GS_NSXMLDocument_IVARS SUPERIVARS(GS_NSXMLNode_IVARS) \
|
|
NSString *MIMEType; \
|
|
NSInteger contentKind; \
|
|
|
|
/* Instance variables for NSXMLDTD with/without the instance
|
|
* variable 'inherited' from NSXMLNode.
|
|
* This macro needs to be defined before the NSXMLDTD.h header
|
|
* is imported and before GSInternal.h is imported.
|
|
*/
|
|
#define GS_NSXMLDTD_IVARS SUPERIVARS(GS_NSXMLNode_IVARS)
|
|
|
|
/* Instance variables for NSXMLDTDNode with/without the instance
|
|
* variable 'inherited' from NSXMLNode.
|
|
* This macro needs to be defined before the NSXMLDTDNode.h header
|
|
* is imported and before GSInternal.h is imported.
|
|
*/
|
|
#define GS_NSXMLDTDNode_IVARS SUPERIVARS(GS_NSXMLNode_IVARS) \
|
|
NSUInteger DTDKind; \
|
|
|
|
/* Instance variables for NSXMLElement with/without the instance
|
|
* variable 'inherited' from NSXMLNode.
|
|
* This macro needs to be defined before the NSXMLElement.h header
|
|
* is imported and before GSInternal.h is imported.
|
|
*/
|
|
#define GS_NSXMLElement_IVARS SUPERIVARS(GS_NSXMLNode_IVARS)
|
|
|
|
|
|
#import "Foundation/NSArray.h"
|
|
#import "Foundation/NSData.h"
|
|
#import "Foundation/NSDebug.h"
|
|
#import "Foundation/NSDictionary.h"
|
|
#import "Foundation/NSEnumerator.h"
|
|
#import "Foundation/NSException.h"
|
|
#import "Foundation/NSString.h"
|
|
#import "Foundation/NSURL.h"
|
|
#import "Foundation/NSXMLNode.h"
|
|
#import "Foundation/NSXMLDocument.h"
|
|
#import "Foundation/NSXMLDTDNode.h"
|
|
#import "Foundation/NSXMLDTD.h"
|
|
#import "Foundation/NSXMLElement.h"
|
|
|
|
#ifdef HAVE_LIBXML
|
|
|
|
// Private methods to manage libxml pointers...
|
|
@interface NSXMLNode (Private)
|
|
- (void *) _node;
|
|
- (void) _setNode: (void *)_anode;
|
|
+ (NSXMLNode *) _objectForNode: (xmlNodePtr)node;
|
|
- (void) _addSubNode: (NSXMLNode *)subNode;
|
|
- (void) _removeSubNode: (NSXMLNode *)subNode;
|
|
- (id) _initWithNode: (xmlNodePtr)node kind: (NSXMLNodeKind)kind;
|
|
- (xmlNodePtr) _childNodeAtIndex: (NSUInteger)index;
|
|
- (void) _insertChild: (NSXMLNode*)child atIndex: (NSUInteger)index;
|
|
- (void) _invalidate;
|
|
@end
|
|
|
|
#endif /* HAVE_LIBXML */
|
|
|
|
#endif
|