-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCFXMLNode.h
363 lines (312 loc) · 11.2 KB
/
CFXMLNode.h
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
/*
File: CFXMLNode.h
Contains: CoreFoundation XML Node and XML Tree
Version: Technology: Mac OS X
Release: Universal Interfaces 3.4
Copyright: © 2000-2001 by Apple Computer, Inc., all rights reserved
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef __CFXMLNODE__
#define __CFXMLNODE__
#ifndef __CFARRAY__
#include <CFArray.h>
#endif
#ifndef __CFDICTIONARY__
#include <CFDictionary.h>
#endif
#ifndef __CFSTRING__
#include <CFString.h>
#endif
#ifndef __CFTREE__
#include <CFTree.h>
#endif
#ifndef __CFURL__
#include <CFURL.h>
#endif
#if PRAGMA_ONCE
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT
#pragma import on
#endif
#if PRAGMA_STRUCT_ALIGN
#pragma options align=mac68k
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(push, 2)
#elif PRAGMA_STRUCT_PACK
#pragma pack(2)
#endif
#if PRAGMA_ENUM_ALWAYSINT
#if defined(__fourbyteints__) && !__fourbyteints__
#define __CFXMLNODE__RESTORE_TWOBYTEINTS
#pragma fourbyteints on
#endif
#pragma enumsalwaysint on
#elif PRAGMA_ENUM_OPTIONS
#pragma option enum=int
#elif PRAGMA_ENUM_PACK
#if __option(pack_enums)
#define __CFXMLNODE__RESTORE_PACKED_ENUMS
#pragma options(!pack_enums)
#endif
#endif
typedef const struct __CFXMLNode* CFXMLNodeRef;
typedef CFTreeRef CFXMLTreeRef;
/* An CFXMLNode describes an individual XML construct - like a tag, or a comment, or a string
of character data. Each CFXMLNode contains 3 main pieces of information - the node's type,
the data string, and a pointer to an additional data structure. The node's type ID is an enum
value of type CFXMLNodeTypeID. The data string is always a CFStringRef; the meaning of the
string is dependent on the node's type ID. The format of the additional data is also dependent
on the node's type; in general, there is a custom structure for each type that requires
additional data. See below for the mapping from type ID to meaning of the data string and
structure of the additional data. Note that these structures are versioned, and may change
as the parser changes. The current version can always be identified by kCFXMLNodeCurrentVersion;
earlier versions can be identified and used by passing earlier values for the version number
(although the older structures would have been removed from the header).
An CFXMLTree is simply a CFTree whose context data is known to be an CFXMLNodeRef. As
such, an CFXMLTree can be used to represent an entire XML document; the CFTree
provides the tree structure of the document, while the CFXMLNodes identify and describe
the nodes of the tree. An XML document can be parsed to a CFXMLTree, and a CFXMLTree
can generate the data for the equivalent XML document - see CFXMLParser.h for more
information on parsing XML.
*/
enum {
kCFXMLNodeCurrentVersion = 1
};
/* Type codes for the different possible XML nodes; this list may grow.*/
enum CFXMLNodeTypeCode {
kCFXMLNodeTypeDocument = 1,
kCFXMLNodeTypeElement = 2,
kCFXMLNodeTypeAttribute = 3,
kCFXMLNodeTypeProcessingInstruction = 4,
kCFXMLNodeTypeComment = 5,
kCFXMLNodeTypeText = 6,
kCFXMLNodeTypeCDATASection = 7,
kCFXMLNodeTypeDocumentFragment = 8,
kCFXMLNodeTypeEntity = 9,
kCFXMLNodeTypeEntityReference = 10,
kCFXMLNodeTypeDocumentType = 11,
kCFXMLNodeTypeWhitespace = 12,
kCFXMLNodeTypeNotation = 13,
kCFXMLNodeTypeElementTypeDeclaration = 14,
kCFXMLNodeTypeAttributeListDeclaration = 15
};
typedef enum CFXMLNodeTypeCode CFXMLNodeTypeCode;
struct CFXMLElementInfo {
CFDictionaryRef attributes;
CFArrayRef attributeOrder;
Boolean isEmpty;
};
typedef struct CFXMLElementInfo CFXMLElementInfo;
struct CFXMLProcessingInstructionInfo {
CFStringRef dataString;
};
typedef struct CFXMLProcessingInstructionInfo CFXMLProcessingInstructionInfo;
struct CFXMLDocumentInfo {
CFURLRef sourceURL;
CFStringEncoding encoding;
};
typedef struct CFXMLDocumentInfo CFXMLDocumentInfo;
struct CFXMLExternalID {
CFURLRef systemID;
CFStringRef publicID;
};
typedef struct CFXMLExternalID CFXMLExternalID;
struct CFXMLDocumentTypeInfo {
CFXMLExternalID externalID;
};
typedef struct CFXMLDocumentTypeInfo CFXMLDocumentTypeInfo;
struct CFXMLNotationInfo {
CFXMLExternalID externalID;
};
typedef struct CFXMLNotationInfo CFXMLNotationInfo;
struct CFXMLElementTypeDeclarationInfo {
/* This is expected to change in future versions */
CFStringRef contentDescription;
};
typedef struct CFXMLElementTypeDeclarationInfo CFXMLElementTypeDeclarationInfo;
struct CFXMLAttributeDeclarationInfo {
/* This is expected to change in future versions */
CFStringRef attributeName;
CFStringRef typeString;
CFStringRef defaultString;
};
typedef struct CFXMLAttributeDeclarationInfo CFXMLAttributeDeclarationInfo;
struct CFXMLAttributeListDeclarationInfo {
CFIndex numberOfAttributes;
CFXMLAttributeDeclarationInfo * attributes;
};
typedef struct CFXMLAttributeListDeclarationInfo CFXMLAttributeListDeclarationInfo;
enum CFXMLEntityTypeCode {
kCFXMLEntityTypeParameter = 0, /* Implies parsed, internal */
kCFXMLEntityTypeParsedInternal = 1,
kCFXMLEntityTypeParsedExternal = 2,
kCFXMLEntityTypeUnparsed = 3,
kCFXMLEntityTypeCharacter = 4
};
typedef enum CFXMLEntityTypeCode CFXMLEntityTypeCode;
struct CFXMLEntityInfo {
CFXMLEntityTypeCode entityType;
CFStringRef replacementText; /* NULL if entityType is external or unparsed */
CFXMLExternalID entityID; /* entityID.systemID will be NULL if entityType is internal */
CFStringRef notationName; /* NULL if entityType is parsed */
};
typedef struct CFXMLEntityInfo CFXMLEntityInfo;
struct CFXMLEntityReferenceInfo {
CFXMLEntityTypeCode entityType;
};
typedef struct CFXMLEntityReferenceInfo CFXMLEntityReferenceInfo;
/*
dataTypeCode meaning of dataString format of infoPtr
=========== ===================== =================
kCFXMLNodeTypeDocument <currently unused> CFXMLDocumentInfo *
kCFXMLNodeTypeElement tag name CFXMLElementInfo *
kCFXMLNodeTypeAttribute <currently unused> <currently unused>
kCFXMLNodeTypeProcessInstruction name of the target CFXMLProcessingInstructionInfo *
kCFXMLNodeTypeComment text of the comment NULL
kCFXMLNodeTypeText the text's contents NULL
kCFXMLNodeTypeCDATASection text of the CDATA NULL
kCFXMLNodeTypeDocumentFragment <currently unused> <currently unused>
kCFXMLNodeTypeEntity name of the entity CFXMLEntityInfo *
kCFXMLNodeTypeEntityReference name of the referenced entity CFXMLEntityReferenceInfo *
kCFXMLNodeTypeDocumentType name given as top-level element CFXMLDocumentTypeInfo *
kCFXMLNodeTypeWhitespace text of the whitespace NULL
kCFXMLNodeTypeNotation notation name CFXMLNotationInfo *
kCFXMLNodeTypeElementTypeDeclaration tag name CFXMLElementTypeDeclarationInfo *
kCFXMLNodeTypeAttributeListDeclaration tag name CFXMLAttributeListDeclarationInfo *
*/
/*
* CFXMLNodeGetTypeID()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFTypeID )
CFXMLNodeGetTypeID(void);
/* Creates a new node based on xmlType, dataString, and additionalInfoPtr. version (together with xmlType) determines the expected structure of additionalInfoPtr */
/*
* CFXMLNodeCreate()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFXMLNodeRef )
CFXMLNodeCreate(
CFAllocatorRef alloc,
CFXMLNodeTypeCode xmlType,
CFStringRef dataString,
const void * additionalInfoPtr,
CFIndex version);
/* Creates a copy of origNode (which may not be NULL). */
/*
* CFXMLNodeCreateCopy()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFXMLNodeRef )
CFXMLNodeCreateCopy(
CFAllocatorRef alloc,
CFXMLNodeRef origNode);
/*
* CFXMLNodeGetTypeCode()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFXMLNodeTypeCode )
CFXMLNodeGetTypeCode(CFXMLNodeRef node);
/*
* CFXMLNodeGetString()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFStringRef )
CFXMLNodeGetString(CFXMLNodeRef node);
/*
* CFXMLNodeGetInfoPtr()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( const void * )
CFXMLNodeGetInfoPtr(CFXMLNodeRef node);
/*
* CFXMLNodeGetVersion()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFIndex )
CFXMLNodeGetVersion(CFXMLNodeRef node);
/* CFXMLTreeRef */
/* Creates a childless, parentless tree from node */
/*
* CFXMLTreeCreateWithNode()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFXMLTreeRef )
CFXMLTreeCreateWithNode(
CFAllocatorRef allocator,
CFXMLNodeRef node);
/* Extracts and returns the node stored in xmlTree */
/*
* CFXMLTreeGetNode()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: in CarbonLib 1.1 and later
* Mac OS X: in version 10.0 or later
*/
EXTERN_API_C( CFXMLNodeRef )
CFXMLTreeGetNode(CFXMLTreeRef xmlTree);
#if PRAGMA_ENUM_ALWAYSINT
#pragma enumsalwaysint reset
#ifdef __CFXMLNODE__RESTORE_TWOBYTEINTS
#pragma fourbyteints off
#endif
#elif PRAGMA_ENUM_OPTIONS
#pragma option enum=reset
#elif defined(__CFXMLNODE__RESTORE_PACKED_ENUMS)
#pragma options(pack_enums)
#endif
#if PRAGMA_STRUCT_ALIGN
#pragma options align=reset
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(pop)
#elif PRAGMA_STRUCT_PACK
#pragma pack()
#endif
#ifdef PRAGMA_IMPORT_OFF
#pragma import off
#elif PRAGMA_IMPORT
#pragma import reset
#endif
#ifdef __cplusplus
}
#endif
#endif /* __CFXMLNODE__ */