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
|
{
Translation of the libxml2 headers for FreePascal
Copyright (C) 2008 by Ivo Steinmann
}
unit xml2;
{$mode objfpc}
{$H+}
{$macro on}
{$ALIGN 8}
{$MINENUMSIZE 4}
interface
uses
dynlibs,
ctypes;
const
{$IF Defined(WINDOWS)}
xml2lib = 'libxml2.'+sharedsuffix;
{$DEFINE EXTDECL := cdecl}
{$DEFINE NO_EXTERNAL_VARS}
{$ELSEIF Defined(UNIX)}
xml2lib = 'libxml2.'+sharedsuffix;
{$DEFINE EXTDECL := cdecl}
{$ELSE}
{$MESSAGE ERROR 'Platform not supported right now'}
{$IFEND}
{$i xml2.inc}
implementation
{$IFDEF NO_EXTERNAL_VARS}
function GetxmlMalloc: xmlMallocFunc; inline;
begin
Result := varxmlMalloc^;
end;
procedure SetxmlMalloc(AValue: xmlMallocFunc); inline;
begin
varxmlMalloc^ := AValue;
end;
function GetxmlMallocAtomic: xmlMallocFunc; inline;
begin
Result := varxmlMallocAtomic^;
end;
procedure SetxmlMallocAtomic(AValue: xmlMallocFunc); inline;
begin
varxmlMallocAtomic^ := AValue;
end;
function GetxmlRealloc: xmlReallocFunc; inline;
begin
Result := varxmlRealloc^;
end;
procedure SetxmlRealloc(AValue: xmlReallocFunc); inline;
begin
varxmlRealloc^ := AValue;
end;
function GetxmlFree: xmlFreeFunc; inline;
begin
Result := varxmlFree^;
end;
procedure SetxmlFree(AValue: xmlFreeFunc); inline;
begin
varxmlFree^ := AValue;
end;
function GetxmlMemStrdup: xmlStrdupFunc; inline;
begin
Result := varxmlMemStrdup^;
end;
procedure SetxmlMemStrdup(AValue: xmlStrdupFunc); inline;
begin
varxmlMemStrdup^ := AValue;
end;
{$ENDIF}
procedure fpcxmlFree(mem: pointer); EXTDECL;
begin
FreeMem(mem);
end;
function fpcxmlMalloc(size: csize_t): pointer; EXTDECL;
begin
GetMem(Result, size);
end;
function fpcxmlRealloc(mem: pointer; size: csize_t): pointer; EXTDECL;
begin
Result := mem;
ReallocMem(Result, size);
end;
function fpcxmlStrdup(str: pchar): pchar; EXTDECL;
var
L: SizeInt;
begin
L := Length(str) + 1;
Getmem(Result, L);
if Result <> nil then
Move(str^, Result^, L);
end;
procedure fpcxmlStructuredErrorHandler(userData: pointer; error: xmlErrorPtr); EXTDECL;
begin
writeln('struct error');
end;
(*
* macros from xmlversion.inc
*)
procedure LIBXML_TEST_VERSION;
begin
xmlCheckVersion(LIBXML_VERSION);
end;
(*
* macros from xmlversion.inc
*)
(*
* macros from chvalid.inc
*)
function xmlIsBaseChar_ch(c: cint): cbool;
begin
Result :=
((c >= $41) and (c <= $5A)) or
((c >= $61) and (c <= $7A)) or
((c >= $C0) and (c <= $D6)) or
((c >= $D8) and (c <= $F6)) or
(c >= $F8);
end;
function xmlIsBaseCharQ(c: cint): cbool;
begin
if c < $100 then
Result := xmlIsBaseChar_ch(c)
else
Result := xmlCharInRange(c, __xmlIsBaseCharGroup);
end;
function xmlIsBlank_ch(c: cint): cbool;
begin
Result := (c = $20) or ((c >= $9) and (c <= $A)) or (c = $D);
end;
function xmlIsBlankQ(c: cint): cbool;
begin
if c < $100 then
Result := xmlIsBaseChar_ch(c)
else
Result := false;
end;
function xmlIsChar_ch(c: cint): cbool;
begin
Result := ((c >= $9) and (c <= $A)) or (c = $D) or (c >= $20);
end;
function xmlIsCharQ(c: cint): cbool;
begin
if c < $100 then
Result := xmlIsChar_ch(c)
else
Result :=
((c >= $000100) and (c <= $00D7FF)) or
((c >= $00E000) and (c <= $00FFFD)) or
((c >= $010000) and (c <= $10FFFF));
end;
function xmlIsCombiningQ(c: cint): cbool;
begin
if c < $100 then
Result := false
else
Result := xmlCharInRange(c, __xmlIsCombiningGroup);
end;
function xmlIsDigit_ch(c: cint): cbool;
begin
Result := (c >= $30) and (c <= $39);
end;
function xmlIsDigitQ(c: cint): cbool;
begin
if c < $100 then
Result := xmlIsDigit_ch(c)
else
Result := xmlCharInRange(c, __xmlIsDigitGroup);
end;
function xmlIsExtender_ch(c: cint): cbool;
begin
Result := c = $B7;
end;
function xmlIsExtenderQ(c: cint): cbool;
begin
if c < $100 then
Result := xmlIsExtender_ch(c)
else
Result := xmlCharInRange(c, __xmlIsExtenderGroup);
end;
function xmlIsIdeographicQ(c: cint): cbool;
begin
if c < $100 then
Result := false
else
Result :=
((c >= $4E00) and (c <= $9FA5)) or
(c = $3007) or
((c >= $3021) and (c <= $3029));
end;
function xmlIsPubidChar_ch(c: cint): cbool;
begin
if (c >= 0) and (c <= 255) then
Result := __xmlIsPubidChar_tab^[c]
else
Result := false;
end;
function xmlIsPubidCharQ(c: cint): cbool;
begin
if c < $100 then
Result := xmlIsPubidChar_ch(c)
else
Result := false;
end;
(*
* macros from HTMLparser.inc
*)
function htmlDefaultSubelement(elt: htmlElemDescPtr): pchar;
begin
Result := elt^.defaultsubelt;
end;
function htmlElementAllowedHereDesc(parent: htmlElemDescPtr; elt: htmlElemDescPtr): cint;
begin
Result := htmlElementAllowedHere(parent, xmlCharPtr(elt^.name));
end;
function htmlRequiredAttrs(elt: htmlElemDescPtr): ppchar;
begin
Result := elt^.attrs_req;
end;
(*
* macros from tree.inc
*)
function XML_GET_CONTENT(n: pointer): xmlCharPtr;
begin
if xmlNodePtr(n)^._type = XML_ELEMENT_NODE then
Result := nil
else
Result := xmlNodePtr(n)^.content;
end;
(*
* macros from xpath.inc
*)
function xmlXPathNodeSetGetLength(ns: xmlNodeSetPtr): cint;
begin
if assigned(ns) then
Result := ns^.nodeNr
else
Result := 0;
end;
function xmlXPathNodeSetItem(ns: xmlNodeSetPtr; index: cint): xmlNodePtr;
begin
if assigned(ns) and (index >= 0) and (index < ns^.nodeNr) then
Result := ns^.nodeTab[index]
else
Result := nil;
end;
function xmlXPathNodeSetIsEmpty(ns: xmlNodeSetPtr): boolean;
begin
Result := not assigned(ns) or (ns^.nodeNr = 0) or (ns^.nodeTab = nil);
end;
{$IFDEF NO_EXTERNAL_VARS}
procedure LoadExternalVariables;
var
libHandle: THandle;
begin
libHandle := LoadLibrary(xml2lib);
if libHandle <> 0 then
begin
{ xmlregexp.inc }
{__emptyExp := xmlExpNodePtrPtr(GetProcAddress(libHandle, 'emptyExp'));
__forbiddenExp := xmlExpNodePtrPtr(GetProcAddress(libHandle, 'forbiddenExp'));}
{ paserInternals.inc }
//__xmlParserMaxDepth := PCardinal(GetProcAddress(libHandle, 'xmlParserMaxDepth'));
{ }
{xmlStringComment := PChar(GetProcAddress(libHandle, 'xmlStringComment'));
xmlStringText := PChar(GetProcAddress(libHandle, 'xmlStringText'));
xmlStringTextNoenc := PChar(GetProcAddress(libHandle, 'xmlStringTextNoenc'));}
{ chvalid.inc }
__xmlIsBaseCharGroup := xmlChRangeGroupPtr(GetProcAddress(libHandle, 'xmlIsBaseCharGroup'));
__xmlIsCharGroup := xmlChRangeGroupPtr(GetProcAddress(libHandle, 'xmlIsCharGroup'));
__xmlIsCombiningGroup := xmlChRangeGroupPtr(GetProcAddress(libHandle, 'xmlIsCombiningGroup'));
__xmlIsDigitGroup := xmlChRangeGroupPtr(GetProcAddress(libHandle, 'xmlIsDigitGroup'));
__xmlIsExtenderGroup := xmlChRangeGroupPtr(GetProcAddress(libHandle, 'xmlIsExtenderGroup'));
__xmlIsIdeographicGroup := xmlChRangeGroupPtr(GetProcAddress(libHandle, 'xmlIsIdeographicGroup'));
__xmlIsPubidChar_tab := GetProcAddress(libHandle, 'xmlIsPubidChar_tab');
{ globals.inc }
varxmlMalloc := PxmlMallocFunc(GetProcAddress(libHandle, 'xmlMalloc'));
varxmlMallocAtomic := PxmlMallocFunc(GetProcAddress(libHandle, 'xmlMallocAtomic'));
varxmlRealloc := PxmlReallocFunc(GetProcAddress(libHandle, 'xmlRealloc'));
varxmlFree := PxmlFreeFunc(GetProcAddress(libHandle, 'xmlFree'));
varxmlMemStrdup := PxmlStrdupFunc(GetProcAddress(libHandle, 'xmlMemStrdup'));
{ xpath.inc }
{__xmlXPathNAN := PDouble(GetProcAddress(libHandle, 'xmlXPathNAN'));
__xmlXPathNINF := PDouble(GetProcAddress(libHandle, 'xmlXPathNINF'));
__xmlXPathPINF := PDouble(GetProcAddress(libHandle, 'xmlXPathPINF'));}
FreeLibrary(libHandle);
end;
end;
{$ENDIF}
initialization
{$IFDEF NO_EXTERNAL_VARS}
LoadExternalVariables;
{$ENDIF}
(*
* overloading the memory functions
*)
xmlMemSetup(@fpcxmlFree, @fpcxmlMalloc, @fpcxmlRealloc, @fpcxmlStrdup);
(*
* this initialize the library and check potential ABI mismatches
* between the version it was compiled for and the actual shared
* library used.
*)
LIBXML_TEST_VERSION;
(*
* overloading the error functions
*)
//xmlSetGenericErrorFunc(nil, @fpcxmlGenericErrorHandler);
//xmlSetStructuredErrorFunc(nil, @fpcxmlStructuredErrorHandler);
finalization
(*
* Cleanup function for the XML library.
*)
xmlCleanupParser();
(*
* this is to debug memory for regression tests
*)
//xmlMemoryDump();
end.
|