Apache HTTPD
expat.h
Go to the documentation of this file.
1/*
2 __ __ _
3 ___\ \/ /_ __ __ _| |_
4 / _ \\ /| '_ \ / _` | __|
5 | __// \| |_) | (_| | |_
6 \___/_/\_\ .__/ \__,_|\__|
7 |_| XML parser
8
9 Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
10 Copyright (c) 2000 Clark Cooper <[email protected]>
11 Copyright (c) 2000-2005 Fred L. Drake, Jr. <[email protected]>
12 Copyright (c) 2001-2002 Greg Stein <[email protected]>
13 Copyright (c) 2002-2016 Karl Waclawek <[email protected]>
14 Copyright (c) 2016-2024 Sebastian Pipping <[email protected]>
15 Copyright (c) 2016 Cristian Rodríguez <[email protected]>
16 Copyright (c) 2016 Thomas Beutlich <[email protected]>
17 Copyright (c) 2017 Rhodri James <[email protected]>
18 Copyright (c) 2022 Thijs Schreijer <[email protected]>
19 Copyright (c) 2023 Hanno Böck <[email protected]>
20 Copyright (c) 2023 Sony Corporation / Snild Dolkow <[email protected]>
21 Copyright (c) 2024 Taichi Haradaguchi <[email protected]>
22 Licensed under the MIT license:
23
24 Permission is hereby granted, free of charge, to any person obtaining
25 a copy of this software and associated documentation files (the
26 "Software"), to deal in the Software without restriction, including
27 without limitation the rights to use, copy, modify, merge, publish,
28 distribute, sublicense, and/or sell copies of the Software, and to permit
29 persons to whom the Software is furnished to do so, subject to the
30 following conditions:
31
32 The above copyright notice and this permission notice shall be included
33 in all copies or substantial portions of the Software.
34
35 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
36 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
37 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
38 NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
39 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
40 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
41 USE OR OTHER DEALINGS IN THE SOFTWARE.
42*/
43
44#ifndef Expat_INCLUDED
45#define Expat_INCLUDED 1
46
47#include <stdlib.h>
48#include "expat_external.h"
49
50#ifdef __cplusplus
51extern "C" {
52#endif
53
54struct XML_ParserStruct;
56
57typedef unsigned char XML_Bool;
58#define XML_TRUE ((XML_Bool)1)
59#define XML_FALSE ((XML_Bool)0)
60
61/* The XML_Status enum gives the possible return values for several
62 API functions. The preprocessor #defines are included so this
63 stanza can be added to code that still needs to support older
64 versions of Expat 1.95.x:
65
66 #ifndef XML_STATUS_OK
67 #define XML_STATUS_OK 1
68 #define XML_STATUS_ERROR 0
69 #endif
70
71 Otherwise, the #define hackery is quite ugly and would have been
72 dropped.
73*/
76#define XML_STATUS_ERROR XML_STATUS_ERROR
78#define XML_STATUS_OK XML_STATUS_OK
80#define XML_STATUS_SUSPENDED XML_STATUS_SUSPENDED
81};
82
111 /* Added in 1.95.7. */
113 /* Added in 1.95.8. */
124 /* Added in 2.0. */
128 /* Added in 2.2.1. */
130 /* Added in 2.3.0. */
132 /* Added in 2.4.0. */
134 /* Added in 2.6.4. */
136};
137
146
153
154/* If type == XML_CTYPE_EMPTY or XML_CTYPE_ANY, then quant will be
155 XML_CQUANT_NONE, and the other fields will be zero or NULL.
156 If type == XML_CTYPE_MIXED, then quant will be NONE or REP and
157 numchildren will contain number of elements that may be mixed in
158 and children point to an array of XML_Content cells that will be
159 all of XML_CTYPE_NAME type with no quantification.
160
161 If type == XML_CTYPE_NAME, then the name points to the name, and
162 the numchildren field will be zero and children will be NULL. The
163 quant fields indicates any quantifiers placed on the name.
164
165 CHOICE and SEQ will have name NULL, the number of children in
166 numchildren and children will point, recursively, to an array
167 of XML_Content cells.
168
169 The EMPTY, ANY, and MIXED types will only occur at top level.
170*/
171
172typedef struct XML_cp XML_Content;
173
181
182/* This is called for an element declaration. See above for
183 description of the model argument. It's the user code's responsibility
184 to free model when finished with it. See XML_FreeContentModel.
185 There is no need to free the model from the handler, it can be kept
186 around and freed at a later stage.
187*/
188typedef void(XMLCALL *XML_ElementDeclHandler)(void *userData,
189 const XML_Char *name,
190 XML_Content *model);
191
192XMLPARSEAPI(void)
194
195/* The Attlist declaration handler is called for *each* attribute. So
196 a single Attlist declaration with multiple attributes declared will
197 generate multiple calls to this handler. The "default" parameter
198 may be NULL in the case of the "#IMPLIED" or "#REQUIRED"
199 keyword. The "isrequired" parameter will be true and the default
200 value will be NULL in the case of "#REQUIRED". If "isrequired" is
201 true and default is non-NULL, then this is a "#FIXED" default.
202*/
204 void *userData, const XML_Char *elname, const XML_Char *attname,
205 const XML_Char *att_type, const XML_Char *dflt, int isrequired);
206
207XMLPARSEAPI(void)
209
210/* The XML declaration handler is called for *both* XML declarations
211 and text declarations. The way to distinguish is that the version
212 parameter will be NULL for text declarations. The encoding
213 parameter may be NULL for XML declarations. The standalone
214 parameter will be -1, 0, or 1 indicating respectively that there
215 was no standalone parameter in the declaration, that it was given
216 as no, or that it was given as yes.
217*/
218typedef void(XMLCALL *XML_XmlDeclHandler)(void *userData,
219 const XML_Char *version,
220 const XML_Char *encoding,
221 int standalone);
222
223XMLPARSEAPI(void)
225
226typedef struct {
227 void *(*malloc_fcn)(size_t size);
228 void *(*realloc_fcn)(void *ptr, size_t size);
229 void (*free_fcn)(void *ptr);
231
232/* Constructs a new parser; encoding is the encoding specified by the
233 external protocol or NULL if there is none specified.
234*/
237
238/* Constructs a new parser and namespace processor. Element type
239 names and attribute names that belong to a namespace will be
240 expanded; unprefixed attribute names are never expanded; unprefixed
241 element type names are expanded only if there is a default
242 namespace. The expanded name is the concatenation of the namespace
243 URI, the namespace separator character, and the local part of the
244 name. If the namespace separator is '\0' then the namespace URI
245 and the local part will be concatenated without any separator.
246 It is a programming error to use the separator '\0' with namespace
247 triplets (see XML_SetReturnNSTriplet).
248 If a namespace separator is chosen that can be part of a URI or
249 part of an XML name, splitting an expanded name back into its
250 1, 2 or 3 original parts on application level in the element handler
251 may end up vulnerable, so these are advised against; sane choices for
252 a namespace separator are e.g. '\n' (line feed) and '|' (pipe).
253
254 Note that Expat does not validate namespace URIs (beyond encoding)
255 against RFC 3986 today (and is not required to do so with regard to
256 the XML 1.0 namespaces specification) but it may start doing that
257 in future releases. Before that, an application using Expat must
258 be ready to receive namespace URIs containing non-URI characters.
259*/
262
263/* Constructs a new parser using the memory management suite referred to
264 by memsuite. If memsuite is NULL, then use the standard library memory
265 suite. If namespaceSeparator is non-NULL it creates a parser with
266 namespace processing as described above. The character pointed at
267 will serve as the namespace separator.
268
269 All further memory operations used for the created parser will come from
270 the given suite.
271*/
276
277/* Prepare a parser object to be reused. This is particularly
278 valuable when memory allocation overhead is disproportionately high,
279 such as when a large number of small documnents need to be parsed.
280 All handlers are cleared from the parser, except for the
281 unknownEncodingHandler. The parser's external state is re-initialized
282 except for the values of ns and ns_triplets.
283
284 Added in Expat 1.95.3.
285*/
288
289/* atts is array of name/value pairs, terminated by 0;
290 names and values are 0 terminated.
291*/
292typedef void(XMLCALL *XML_StartElementHandler)(void *userData,
293 const XML_Char *name,
294 const XML_Char **atts);
295
296typedef void(XMLCALL *XML_EndElementHandler)(void *userData,
297 const XML_Char *name);
298
299/* s is not 0 terminated. */
300typedef void(XMLCALL *XML_CharacterDataHandler)(void *userData,
301 const XML_Char *s, int len);
302
303/* target and data are 0 terminated */
304typedef void(XMLCALL *XML_ProcessingInstructionHandler)(void *userData,
305 const XML_Char *target,
306 const XML_Char *data);
307
308/* data is 0 terminated */
309typedef void(XMLCALL *XML_CommentHandler)(void *userData, const XML_Char *data);
310
311typedef void(XMLCALL *XML_StartCdataSectionHandler)(void *userData);
312typedef void(XMLCALL *XML_EndCdataSectionHandler)(void *userData);
313
314/* This is called for any characters in the XML document for which
315 there is no applicable handler. This includes both characters that
316 are part of markup which is of a kind that is not reported
317 (comments, markup declarations), or characters that are part of a
318 construct which could be reported but for which no handler has been
319 supplied. The characters are passed exactly as they were in the XML
320 document except that they will be encoded in UTF-8 or UTF-16.
321 Line boundaries are not normalized. Note that a byte order mark
322 character is not passed to the default handler. There are no
323 guarantees about how characters are divided between calls to the
324 default handler: for example, a comment might be split between
325 multiple calls.
326*/
327typedef void(XMLCALL *XML_DefaultHandler)(void *userData, const XML_Char *s,
328 int len);
329
330/* This is called for the start of the DOCTYPE declaration, before
331 any DTD or internal subset is parsed.
332*/
333typedef void(XMLCALL *XML_StartDoctypeDeclHandler)(void *userData,
334 const XML_Char *doctypeName,
335 const XML_Char *sysid,
336 const XML_Char *pubid,
338
339/* This is called for the end of the DOCTYPE declaration when the
340 closing > is encountered, but after processing any external
341 subset.
342*/
343typedef void(XMLCALL *XML_EndDoctypeDeclHandler)(void *userData);
344
345/* This is called for entity declarations. The is_parameter_entity
346 argument will be non-zero if the entity is a parameter entity, zero
347 otherwise.
348
349 For internal entities (<!ENTITY foo "bar">), value will
350 be non-NULL and systemId, publicID, and notationName will be NULL.
351 The value string is NOT null-terminated; the length is provided in
352 the value_length argument. Since it is legal to have zero-length
353 values, do not use this argument to test for internal entities.
354
355 For external entities, value will be NULL and systemId will be
356 non-NULL. The publicId argument will be NULL unless a public
357 identifier was provided. The notationName argument will have a
358 non-NULL value only for unparsed entity declarations.
359
360 Note that is_parameter_entity can't be changed to XML_Bool, since
361 that would break binary compatibility.
362*/
364 void *userData, const XML_Char *entityName, int is_parameter_entity,
365 const XML_Char *value, int value_length, const XML_Char *base,
366 const XML_Char *systemId, const XML_Char *publicId,
367 const XML_Char *notationName);
368
369XMLPARSEAPI(void)
371
372/* OBSOLETE -- OBSOLETE -- OBSOLETE
373 This handler has been superseded by the EntityDeclHandler above.
374 It is provided here for backward compatibility.
375
376 This is called for a declaration of an unparsed (NDATA) entity.
377 The base argument is whatever was set by XML_SetBase. The
378 entityName, systemId and notationName arguments will never be
379 NULL. The other arguments may be.
380*/
382 void *userData, const XML_Char *entityName, const XML_Char *base,
383 const XML_Char *systemId, const XML_Char *publicId,
384 const XML_Char *notationName);
385
386/* This is called for a declaration of notation. The base argument is
387 whatever was set by XML_SetBase. The notationName will never be
388 NULL. The other arguments can be.
389*/
390typedef void(XMLCALL *XML_NotationDeclHandler)(void *userData,
391 const XML_Char *notationName,
392 const XML_Char *base,
393 const XML_Char *systemId,
394 const XML_Char *publicId);
395
396/* When namespace processing is enabled, these are called once for
397 each namespace declaration. The call to the start and end element
398 handlers occur between the calls to the start and end namespace
399 declaration handlers. For an xmlns attribute, prefix will be
400 NULL. For an xmlns="" attribute, uri will be NULL.
401*/
402typedef void(XMLCALL *XML_StartNamespaceDeclHandler)(void *userData,
403 const XML_Char *prefix,
404 const XML_Char *uri);
405
406typedef void(XMLCALL *XML_EndNamespaceDeclHandler)(void *userData,
407 const XML_Char *prefix);
408
409/* This is called if the document is not standalone, that is, it has an
410 external subset or a reference to a parameter entity, but does not
411 have standalone="yes". If this handler returns XML_STATUS_ERROR,
412 then processing will not continue, and the parser will return a
413 XML_ERROR_NOT_STANDALONE error.
414 If parameter entity parsing is enabled, then in addition to the
415 conditions above this handler will only be called if the referenced
416 entity was actually read.
417*/
418typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData);
419
420/* This is called for a reference to an external parsed general
421 entity. The referenced entity is not automatically parsed. The
422 application can parse it immediately or later using
423 XML_ExternalEntityParserCreate.
424
425 The parser argument is the parser parsing the entity containing the
426 reference; it can be passed as the parser argument to
427 XML_ExternalEntityParserCreate. The systemId argument is the
428 system identifier as specified in the entity declaration; it will
429 not be NULL.
430
431 The base argument is the system identifier that should be used as
432 the base for resolving systemId if systemId was relative; this is
433 set by XML_SetBase; it may be NULL.
434
435 The publicId argument is the public identifier as specified in the
436 entity declaration, or NULL if none was specified; the whitespace
437 in the public identifier will have been normalized as required by
438 the XML spec.
439
440 The context argument specifies the parsing context in the format
441 expected by the context argument to XML_ExternalEntityParserCreate;
442 context is valid only until the handler returns, so if the
443 referenced entity is to be parsed later, it must be copied.
444 context is NULL only when the entity is a parameter entity.
445
446 The handler should return XML_STATUS_ERROR if processing should not
447 continue because of a fatal error in the handling of the external
448 entity. In this case the calling parser will return an
449 XML_ERROR_EXTERNAL_ENTITY_HANDLING error.
450
451 Note that unlike other handlers the first argument is the parser,
452 not userData.
453*/
455 const XML_Char *context,
456 const XML_Char *base,
457 const XML_Char *systemId,
458 const XML_Char *publicId);
459
460/* This is called in two situations:
461 1) An entity reference is encountered for which no declaration
462 has been read *and* this is not an error.
463 2) An internal entity reference is read, but not expanded, because
464 XML_SetDefaultHandler has been called.
465 Note: skipped parameter entities in declarations and skipped general
466 entities in attribute values cannot be reported, because
467 the event would be out of sync with the reporting of the
468 declarations or attribute values
469*/
470typedef void(XMLCALL *XML_SkippedEntityHandler)(void *userData,
471 const XML_Char *entityName,
473
474/* This structure is filled in by the XML_UnknownEncodingHandler to
475 provide information to the parser about encodings that are unknown
476 to the parser.
477
478 The map[b] member gives information about byte sequences whose
479 first byte is b.
480
481 If map[b] is c where c is >= 0, then b by itself encodes the
482 Unicode scalar value c.
483
484 If map[b] is -1, then the byte sequence is malformed.
485
486 If map[b] is -n, where n >= 2, then b is the first byte of an
487 n-byte sequence that encodes a single Unicode scalar value.
488
489 The data member will be passed as the first argument to the convert
490 function.
491
492 The convert function is used to convert multibyte sequences; s will
493 point to a n-byte sequence where map[(unsigned char)*s] == -n. The
494 convert function must return the Unicode scalar value represented
495 by this byte sequence or -1 if the byte sequence is malformed.
496
497 The convert function may be NULL if the encoding is a single-byte
498 encoding, that is if map[b] >= -1 for all bytes b.
499
500 When the parser is finished with the encoding, then if release is
501 not NULL, it will call release passing it the data member; once
502 release has been called, the convert function will not be called
503 again.
504
505 Expat places certain restrictions on the encodings that are supported
506 using this mechanism.
507
508 1. Every ASCII character that can appear in a well-formed XML document,
509 other than the characters
510
511 $@\^`{}~
512
513 must be represented by a single byte, and that byte must be the
514 same byte that represents that character in ASCII.
515
516 2. No character may require more than 4 bytes to encode.
517
518 3. All characters encoded must have Unicode scalar values <=
519 0xFFFF, (i.e., characters that would be encoded by surrogates in
520 UTF-16 are not allowed). Note that this restriction doesn't
521 apply to the built-in support for UTF-8 and UTF-16.
522
523 4. No Unicode character may be encoded by more than one distinct
524 sequence of bytes.
525*/
526typedef struct {
527 int map[256];
528 void *data;
529 int(XMLCALL *convert)(void *data, const char *s);
530 void(XMLCALL *release)(void *data);
532
533/* This is called for an encoding that is unknown to the parser.
534
535 The encodingHandlerData argument is that which was passed as the
536 second argument to XML_SetUnknownEncodingHandler.
537
538 The name argument gives the name of the encoding as specified in
539 the encoding declaration.
540
541 If the callback can provide information about the encoding, it must
542 fill in the XML_Encoding structure, and return XML_STATUS_OK.
543 Otherwise it must return XML_STATUS_ERROR.
544
545 If info does not describe a suitable encoding, then the parser will
546 return an XML_ERROR_UNKNOWN_ENCODING error.
547*/
549 const XML_Char *name,
551
552XMLPARSEAPI(void)
555
556XMLPARSEAPI(void)
558
559XMLPARSEAPI(void)
561
562XMLPARSEAPI(void)
565
566XMLPARSEAPI(void)
569XMLPARSEAPI(void)
571
572XMLPARSEAPI(void)
576
577XMLPARSEAPI(void)
580
581XMLPARSEAPI(void)
584
585/* This sets the default handler and also inhibits expansion of
586 internal entities. These entity references will be passed to the
587 default handler, or to the skipped entity handler, if one is set.
588*/
589XMLPARSEAPI(void)
591
592/* This sets the default handler but does not inhibit expansion of
593 internal entities. The entity reference will not be passed to the
594 default handler.
595*/
596XMLPARSEAPI(void)
598
599XMLPARSEAPI(void)
602
603XMLPARSEAPI(void)
606
607XMLPARSEAPI(void)
609
610XMLPARSEAPI(void)
613
614XMLPARSEAPI(void)
616
617XMLPARSEAPI(void)
621
622XMLPARSEAPI(void)
625
626XMLPARSEAPI(void)
629
630XMLPARSEAPI(void)
633
634XMLPARSEAPI(void)
637
638/* If a non-NULL value for arg is specified here, then it will be
639 passed as the first argument to the external entity ref handler
640 instead of the parser object.
641*/
642XMLPARSEAPI(void)
644
645XMLPARSEAPI(void)
648
649XMLPARSEAPI(void)
652 void *encodingHandlerData);
653
654/* This can be called within a handler for a start element, end
655 element, processing instruction or character data. It causes the
656 corresponding markup to be passed to the default handler.
657*/
658XMLPARSEAPI(void)
660
661/* If do_nst is non-zero, and namespace processing is in effect, and
662 a name has a prefix (i.e. an explicit namespace qualifier) then
663 that name is returned as a triplet in a single string separated by
664 the separator character specified when the parser was created: URI
665 + sep + local_name + sep + prefix.
666
667 If do_nst is zero, then namespace information is returned in the
668 default manner (URI + sep + local_name) whether or not the name
669 has a prefix.
670
671 Note: Calling XML_SetReturnNSTriplet after XML_Parse or
672 XML_ParseBuffer has no effect.
673*/
674
675XMLPARSEAPI(void)
677
678/* This value is passed as the userData argument to callbacks. */
679XMLPARSEAPI(void)
680XML_SetUserData(XML_Parser parser, void *userData);
681
682/* Returns the last value set by XML_SetUserData or NULL. */
683#define XML_GetUserData(parser) (*(void **)(parser))
684
685/* This is equivalent to supplying an encoding argument to
686 XML_ParserCreate. On success XML_SetEncoding returns non-zero,
687 zero otherwise.
688 Note: Calling XML_SetEncoding after XML_Parse or XML_ParseBuffer
689 has no effect and returns XML_STATUS_ERROR.
690*/
693
694/* If this function is called, then the parser will be passed as the
695 first argument to callbacks instead of userData. The userData will
696 still be accessible using XML_GetUserData.
697*/
698XMLPARSEAPI(void)
700
701/* If useDTD == XML_TRUE is passed to this function, then the parser
702 will assume that there is an external subset, even if none is
703 specified in the document. In such a case the parser will call the
704 externalEntityRefHandler with a value of NULL for the systemId
705 argument (the publicId and context arguments will be NULL as well).
706 Note: For the purpose of checking WFC: Entity Declared, passing
707 useDTD == XML_TRUE will make the parser behave as if the document
708 had a DTD with an external subset.
709 Note: If this function is called, then this must be done before
710 the first call to XML_Parse or XML_ParseBuffer, since it will
711 have no effect after that. Returns
712 XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING.
713 Note: If the document does not have a DOCTYPE declaration at all,
714 then startDoctypeDeclHandler and endDoctypeDeclHandler will not
715 be called, despite an external subset being parsed.
716 Note: If XML_DTD is not defined when Expat is compiled, returns
717 XML_ERROR_FEATURE_REQUIRES_XML_DTD.
718 Note: If parser == NULL, returns XML_ERROR_INVALID_ARGUMENT.
719*/
722
723/* Sets the base to be used for resolving relative URIs in system
724 identifiers in declarations. Resolving relative identifiers is
725 left to the application: this value will be passed through as the
726 base argument to the XML_ExternalEntityRefHandler,
727 XML_NotationDeclHandler and XML_UnparsedEntityDeclHandler. The base
728 argument will be copied. Returns XML_STATUS_ERROR if out of memory,
729 XML_STATUS_OK otherwise.
730*/
733
734XMLPARSEAPI(const XML_Char *)
736
737/* Returns the number of the attribute/value pairs passed in last call
738 to the XML_StartElementHandler that were specified in the start-tag
739 rather than defaulted. Each attribute/value pair counts as 2; thus
740 this corresponds to an index into the atts array passed to the
741 XML_StartElementHandler. Returns -1 if parser == NULL.
742*/
743XMLPARSEAPI(int)
745
746/* Returns the index of the ID attribute passed in the last call to
747 XML_StartElementHandler, or -1 if there is no ID attribute or
748 parser == NULL. Each attribute/value pair counts as 2; thus this
749 corresponds to an index into the atts array passed to the
750 XML_StartElementHandler.
751*/
752XMLPARSEAPI(int)
754
755#ifdef XML_ATTR_INFO
756/* Source file byte offsets for the start and end of attribute names and values.
757 The value indices are exclusive of surrounding quotes; thus in a UTF-8 source
758 file an attribute value of "blah" will yield:
759 info->valueEnd - info->valueStart = 4 bytes.
760*/
761typedef struct {
762 XML_Index nameStart; /* Offset to beginning of the attribute name. */
763 XML_Index nameEnd; /* Offset after the attribute name's last byte. */
764 XML_Index valueStart; /* Offset to beginning of the attribute value. */
765 XML_Index valueEnd; /* Offset after the attribute value's last byte. */
767
768/* Returns an array of XML_AttrInfo structures for the attribute/value pairs
769 passed in last call to the XML_StartElementHandler that were specified
770 in the start-tag rather than defaulted. Each attribute/value pair counts
771 as 1; thus the number of entries in the array is
772 XML_GetSpecifiedAttributeCount(parser) / 2.
773*/
776#endif
777
778/* Parses some input. Returns XML_STATUS_ERROR if a fatal error is
779 detected. The last call to XML_Parse must have isFinal true; len
780 may be zero for this call (or any other).
781
782 Though the return values for these functions has always been
783 described as a Boolean value, the implementation, at least for the
784 1.95.x series, has always returned exactly one of the XML_Status
785 values.
786*/
788XML_Parse(XML_Parser parser, const char *s, int len, int isFinal);
789
790XMLPARSEAPI(void *)
792
795
796/* Stops parsing, causing XML_Parse() or XML_ParseBuffer() to return.
797 Must be called from within a call-back handler, except when aborting
798 (resumable = 0) an already suspended parser. Some call-backs may
799 still follow because they would otherwise get lost. Examples:
800 - endElementHandler() for empty elements when stopped in
801 startElementHandler(),
802 - endNameSpaceDeclHandler() when stopped in endElementHandler(),
803 and possibly others.
804
805 Can be called from most handlers, including DTD related call-backs,
806 except when parsing an external parameter entity and resumable != 0.
807 Returns XML_STATUS_OK when successful, XML_STATUS_ERROR otherwise.
808 Possible error codes:
809 - XML_ERROR_SUSPENDED: when suspending an already suspended parser.
810 - XML_ERROR_FINISHED: when the parser has already finished.
811 - XML_ERROR_SUSPEND_PE: when suspending while parsing an external PE.
812
813 When resumable != 0 (true) then parsing is suspended, that is,
814 XML_Parse() and XML_ParseBuffer() return XML_STATUS_SUSPENDED.
815 Otherwise, parsing is aborted, that is, XML_Parse() and XML_ParseBuffer()
816 return XML_STATUS_ERROR with error code XML_ERROR_ABORTED.
817
818 *Note*:
819 This will be applied to the current parser instance only, that is, if
820 there is a parent parser then it will continue parsing when the
821 externalEntityRefHandler() returns. It is up to the implementation of
822 the externalEntityRefHandler() to call XML_StopParser() on the parent
823 parser (recursively), if one wants to stop parsing altogether.
824
825 When suspended, parsing can be resumed by calling XML_ResumeParser().
826*/
829
830/* Resumes parsing after it has been suspended with XML_StopParser().
831 Must not be called from within a handler call-back. Returns same
832 status codes as XML_Parse() or XML_ParseBuffer().
833 Additional error code XML_ERROR_NOT_SUSPENDED possible.
834
835 *Note*:
836 This must be called on the most deeply nested child parser instance
837 first, and on its parent parser only after the child parser has finished,
838 to be applied recursively until the document entity's parser is restarted.
839 That is, the parent parser will not resume by itself and it is up to the
840 application to call XML_ResumeParser() on it at the appropriate moment.
841*/
844
846
851
852/* Returns status of parser with respect to being initialized, parsing,
853 finished, or suspended and processing the final buffer.
854 XXX XML_Parse() and XML_ParseBuffer() should return XML_ParsingStatus,
855 XXX with XML_FINISHED_OK or XML_FINISHED_ERROR replacing XML_FINISHED
856*/
857XMLPARSEAPI(void)
859
860/* Creates an XML_Parser object that can parse an external general
861 entity; context is a '\0'-terminated string specifying the parse
862 context; encoding is a '\0'-terminated string giving the name of
863 the externally specified encoding, or NULL if there is no
864 externally specified encoding. The context string consists of a
865 sequence of tokens separated by formfeeds (\f); a token consisting
866 of a name specifies that the general entity of the name is open; a
867 token of the form prefix=uri specifies the namespace for a
868 particular prefix; a token of the form =uri specifies the default
869 namespace. This can be called at any point after the first call to
870 an ExternalEntityRefHandler so longer as the parser has not yet
871 been freed. The new parser is completely independent and may
872 safely be used in a separate thread. The handlers and userData are
873 initialized from the parser argument. Returns NULL if out of memory.
874 Otherwise returns a new XML_Parser object.
875*/
878 const XML_Char *encoding);
879
885
886/* Controls parsing of parameter entities (including the external DTD
887 subset). If parsing of parameter entities is enabled, then
888 references to external parameter entities (including the external
889 DTD subset) will be passed to the handler set with
890 XML_SetExternalEntityRefHandler. The context passed will be 0.
891
892 Unlike external general entities, external parameter entities can
893 only be parsed synchronously. If the external parameter entity is
894 to be parsed, it must be parsed during the call to the external
895 entity ref handler: the complete sequence of
896 XML_ExternalEntityParserCreate, XML_Parse/XML_ParseBuffer and
897 XML_ParserFree calls must be made during this call. After
898 XML_ExternalEntityParserCreate has been called to create the parser
899 for the external parameter entity (context must be 0 for this
900 call), it is illegal to make any calls on the old parser until
901 XML_ParserFree has been called on the newly created parser.
902 If the library has been compiled without support for parameter
903 entity parsing (ie without XML_DTD being defined), then
904 XML_SetParamEntityParsing will return 0 if parsing of parameter
905 entities is requested; otherwise it will return non-zero.
906 Note: If XML_SetParamEntityParsing is called after XML_Parse or
907 XML_ParseBuffer, then it has no effect and will always return 0.
908 Note: If parser == NULL, the function will do nothing and return 0.
909*/
910XMLPARSEAPI(int)
912 enum XML_ParamEntityParsing parsing);
913
914/* Sets the hash salt to use for internal hash calculations.
915 Helps in preventing DoS attacks based on predicting hash
916 function behavior. This must be called before parsing is started.
917 Returns 1 if successful, 0 when called after parsing has started.
918 Note: If parser == NULL, the function will do nothing and return 0.
919*/
920XMLPARSEAPI(int)
922
923/* If XML_Parse or XML_ParseBuffer have returned XML_STATUS_ERROR, then
924 XML_GetErrorCode returns information about the error.
925*/
928
929/* These functions return information about the current parse
930 location. They may be called from any callback called to report
931 some parse event; in this case the location is the location of the
932 first of the sequence of characters that generated the event. When
933 called from callbacks generated by declarations in the document
934 prologue, the location identified isn't as neatly defined, but will
935 be within the relevant markup. When called outside of the callback
936 functions, the position indicated will be just past the last parse
937 event (regardless of whether there was an associated callback).
938
939 They may also be called after returning from a call to XML_Parse
940 or XML_ParseBuffer. If the return value is XML_STATUS_ERROR then
941 the location is the location of the character at which the error
942 was detected; otherwise the location is the location of the last
943 parse event, as described above.
944
945 Note: XML_GetCurrentLineNumber and XML_GetCurrentColumnNumber
946 return 0 to indicate an error.
947 Note: XML_GetCurrentByteIndex returns -1 to indicate an error.
948*/
952
953/* Return the number of bytes in the current event.
954 Returns 0 if the event is in an internal entity.
955*/
956XMLPARSEAPI(int)
958
959/* If XML_CONTEXT_BYTES is >=1, returns the input buffer, sets
960 the integer pointed to by offset to the offset within this buffer
961 of the current parse position, and sets the integer pointed to by size
962 to the size of this buffer (the number of input bytes). Otherwise
963 returns a NULL pointer. Also returns a NULL pointer if a parse isn't
964 active.
965
966 NOTE: The character pointer returned should not be used outside
967 the handler that makes the call.
968*/
969XMLPARSEAPI(const char *)
971
972/* For backwards compatibility with previous versions. */
973#define XML_GetErrorLineNumber XML_GetCurrentLineNumber
974#define XML_GetErrorColumnNumber XML_GetCurrentColumnNumber
975#define XML_GetErrorByteIndex XML_GetCurrentByteIndex
976
977/* Frees the content model passed to the element declaration handler */
978XMLPARSEAPI(void)
980
981/* Exposing the memory handling functions used in Expat */
982XMLPARSEAPI(void *)
986
987XMLPARSEAPI(void *)
989XML_MemRealloc(XML_Parser parser, void *ptr, size_t size);
990
991XMLPARSEAPI(void)
992XML_MemFree(XML_Parser parser, void *ptr);
993
994/* Frees memory used by the parser. */
995XMLPARSEAPI(void)
997
998/* Returns a string describing the error. */
1001
1002/* Return a string containing the version number of this expat */
1004XML_ExpatVersion(void);
1005
1011
1012/* Return an XML_Expat_Version structure containing numeric version
1013 number information for this version of expat.
1014*/
1017
1018/* Added in Expat 1.95.5. */
1038
1039typedef struct {
1042 long int value;
1043} XML_Feature;
1044
1045XMLPARSEAPI(const XML_Feature *)
1046XML_GetFeatureList(void);
1047
1048#if defined(XML_DTD) || (defined(XML_GE) && XML_GE == 1)
1049/* Added in Expat 2.4.0 for XML_DTD defined and
1050 * added in Expat 2.6.0 for XML_GE == 1. */
1054
1055/* Added in Expat 2.4.0 for XML_DTD defined and
1056 * added in Expat 2.6.0 for XML_GE == 1. */
1059 XML_Parser parser, unsigned long long activationThresholdBytes);
1060#endif
1061
1062/* Added in Expat 2.6.0. */
1065
1066/* Expat follows the semantic versioning convention.
1067 See https://semver.org
1068*/
1069#define XML_MAJOR_VERSION 2
1070#define XML_MINOR_VERSION 6
1071#define XML_MICRO_VERSION 4
1072
1073#ifdef __cplusplus
1074}
1075#endif
1076
1077#endif /* not Expat_INCLUDED */
const char apr_size_t len
Definition ap_regex.h:187
void(* XML_EndElementHandler)(void *userData, const XML_Char *name)
Definition expat.h:296
int XML_GetCurrentByteCount(XML_Parser parser)
Definition xmlparse.c:2335
const XML_LChar * XML_ErrorString(enum XML_Error code)
Definition xmlparse.c:2429
void(* XML_StartElementHandler)(void *userData, const XML_Char *name, const XML_Char **atts)
Definition expat.h:292
void(* XML_DefaultHandler)(void *userData, const XML_Char *s, int len)
Definition expat.h:327
void XML_GetParsingStatus(XML_Parser parser, XML_ParsingStatus *status)
Definition xmlparse.c:2310
int XML_GetSpecifiedAttributeCount(XML_Parser parser)
Definition xmlparse.c:1668
int(* XML_ExternalEntityRefHandler)(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId)
Definition expat.h:454
void(* XML_StartNamespaceDeclHandler)(void *userData, const XML_Char *prefix, const XML_Char *uri)
Definition expat.h:402
XML_Bool XML_SetReparseDeferralEnabled(XML_Parser parser, XML_Bool enabled)
Definition xmlparse.c:2641
void XML_SetStartDoctypeDeclHandler(XML_Parser parser, XML_StartDoctypeDeclHandler start)
Definition xmlparse.c:1781
XML_Parsing
Definition expat.h:845
@ XML_PARSING
Definition expat.h:845
@ XML_SUSPENDED
Definition expat.h:845
@ XML_FINISHED
Definition expat.h:845
@ XML_INITIALIZED
Definition expat.h:845
#define XML_STATUS_ERROR
Definition expat.h:76
void XML_SetCdataSectionHandler(XML_Parser parser, XML_StartCdataSectionHandler start, XML_EndCdataSectionHandler end)
Definition xmlparse.c:1732
void XML_SetElementHandler(XML_Parser parser, XML_StartElementHandler start, XML_EndElementHandler end)
Definition xmlparse.c:1691
int XML_GetIdAttributeIndex(XML_Parser parser)
Definition xmlparse.c:1675
XML_FeatureEnum
Definition expat.h:1019
@ XML_FEATURE_DTD
Definition expat.h:1023
@ XML_FEATURE_SIZEOF_XML_LCHAR
Definition expat.h:1027
@ XML_FEATURE_NS
Definition expat.h:1028
@ XML_FEATURE_UNICODE
Definition expat.h:1021
@ XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_MAXIMUM_AMPLIFICATION_DEFAULT
Definition expat.h:1032
@ XML_FEATURE_SIZEOF_XML_CHAR
Definition expat.h:1026
@ XML_FEATURE_MIN_SIZE
Definition expat.h:1025
@ XML_FEATURE_GE
Definition expat.h:1035
@ XML_FEATURE_END
Definition expat.h:1020
@ XML_FEATURE_UNICODE_WCHAR_T
Definition expat.h:1022
@ XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_ACTIVATION_THRESHOLD_DEFAULT
Definition expat.h:1033
@ XML_FEATURE_CONTEXT_BYTES
Definition expat.h:1024
@ XML_FEATURE_LARGE_SIZE
Definition expat.h:1029
@ XML_FEATURE_ATTR_INFO
Definition expat.h:1030
XML_Index XML_GetCurrentByteIndex(XML_Parser parser)
Definition xmlparse.c:2325
enum XML_Status XML_SetEncoding(XML_Parser parser, const XML_Char *encoding)
Definition xmlparse.c:1327
void(* XML_NotationDeclHandler)(void *userData, const XML_Char *notationName, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId)
Definition expat.h:390
void(* XML_AttlistDeclHandler)(void *userData, const XML_Char *elname, const XML_Char *attname, const XML_Char *att_type, const XML_Char *dflt, int isrequired)
Definition expat.h:203
void XML_SetStartElementHandler(XML_Parser parser, XML_StartElementHandler handler)
Definition xmlparse.c:1700
void XML_SetCommentHandler(XML_Parser parser, XML_CommentHandler handler)
Definition xmlparse.c:1726
void XML_SetElementDeclHandler(XML_Parser parser, XML_ElementDeclHandler eldecl)
Definition xmlparse.c:1871
void XML_SetNotStandaloneHandler(XML_Parser parser, XML_NotStandaloneHandler handler)
Definition xmlparse.c:1831
unsigned char XML_Bool
Definition expat.h:57
void XML_SetStartNamespaceDeclHandler(XML_Parser parser, XML_StartNamespaceDeclHandler start)
Definition xmlparse.c:1817
XML_Content_Quant
Definition expat.h:147
@ XML_CQUANT_PLUS
Definition expat.h:151
@ XML_CQUANT_OPT
Definition expat.h:149
@ XML_CQUANT_NONE
Definition expat.h:148
@ XML_CQUANT_REP
Definition expat.h:150
void XML_UseParserAsHandlerArg(XML_Parser parser)
Definition xmlparse.c:1603
void XML_SetCharacterDataHandler(XML_Parser parser, XML_CharacterDataHandler handler)
Definition xmlparse.c:1712
XML_Bool XML_ParserReset(XML_Parser parser, const XML_Char *encoding)
Definition xmlparse.c:1286
XML_Error
Definition expat.h:83
@ XML_ERROR_UNCLOSED_TOKEN
Definition expat.h:89
@ XML_ERROR_ASYNC_ENTITY
Definition expat.h:97
@ XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF
Definition expat.h:100
@ XML_ERROR_NO_BUFFER
Definition expat.h:131
@ XML_ERROR_ABORTED
Definition expat.h:121
@ XML_ERROR_XML_DECL
Definition expat.h:116
@ XML_ERROR_NO_ELEMENTS
Definition expat.h:87
@ XML_ERROR_NOT_STANDALONE
Definition expat.h:106
@ XML_ERROR_INCOMPLETE_PE
Definition expat.h:115
@ XML_ERROR_TEXT_DECL
Definition expat.h:117
@ XML_ERROR_RECURSIVE_ENTITY_REF
Definition expat.h:96
@ XML_ERROR_PARTIAL_CHAR
Definition expat.h:90
@ XML_ERROR_SUSPENDED
Definition expat.h:119
@ XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING
Definition expat.h:110
@ XML_ERROR_ENTITY_DECLARED_IN_PE
Definition expat.h:108
@ XML_ERROR_DUPLICATE_ATTRIBUTE
Definition expat.h:92
@ XML_ERROR_EXTERNAL_ENTITY_HANDLING
Definition expat.h:105
@ XML_ERROR_INCORRECT_ENCODING
Definition expat.h:103
@ XML_ERROR_NO_MEMORY
Definition expat.h:85
@ XML_ERROR_MISPLACED_XML_PI
Definition expat.h:101
@ XML_ERROR_AMPLIFICATION_LIMIT_BREACH
Definition expat.h:133
@ XML_ERROR_NONE
Definition expat.h:84
@ XML_ERROR_PARAM_ENTITY_REF
Definition expat.h:94
@ XML_ERROR_FEATURE_REQUIRES_XML_DTD
Definition expat.h:109
@ XML_ERROR_RESERVED_PREFIX_XML
Definition expat.h:125
@ XML_ERROR_UNEXPECTED_STATE
Definition expat.h:107
@ XML_ERROR_TAG_MISMATCH
Definition expat.h:91
@ XML_ERROR_FINISHED
Definition expat.h:122
@ XML_ERROR_JUNK_AFTER_DOC_ELEMENT
Definition expat.h:93
@ XML_ERROR_NOT_STARTED
Definition expat.h:135
@ XML_ERROR_NOT_SUSPENDED
Definition expat.h:120
@ XML_ERROR_UNCLOSED_CDATA_SECTION
Definition expat.h:104
@ XML_ERROR_RESERVED_NAMESPACE_URI
Definition expat.h:127
@ XML_ERROR_BAD_CHAR_REF
Definition expat.h:98
@ XML_ERROR_UNDEFINED_ENTITY
Definition expat.h:95
@ XML_ERROR_UNBOUND_PREFIX
Definition expat.h:112
@ XML_ERROR_PUBLICID
Definition expat.h:118
@ XML_ERROR_UNDECLARING_PREFIX
Definition expat.h:114
@ XML_ERROR_INVALID_TOKEN
Definition expat.h:88
@ XML_ERROR_BINARY_ENTITY_REF
Definition expat.h:99
@ XML_ERROR_UNKNOWN_ENCODING
Definition expat.h:102
@ XML_ERROR_SUSPEND_PE
Definition expat.h:123
@ XML_ERROR_INVALID_ARGUMENT
Definition expat.h:129
@ XML_ERROR_SYNTAX
Definition expat.h:86
@ XML_ERROR_RESERVED_PREFIX_XMLNS
Definition expat.h:126
void XML_SetDefaultHandlerExpand(XML_Parser parser, XML_DefaultHandler handler)
Definition xmlparse.c:1764
const XML_Char * XML_GetBase(XML_Parser parser)
Definition xmlparse.c:1661
void XML_SetEntityDeclHandler(XML_Parser parser, XML_EntityDeclHandler handler)
Definition xmlparse.c:1883
void XML_SetEndElementHandler(XML_Parser parser, XML_EndElementHandler handler)
Definition xmlparse.c:1706
const XML_Feature * XML_GetFeatureList(void)
Definition xmlparse.c:2567
void(* XML_XmlDeclHandler)(void *userData, const XML_Char *version, const XML_Char *encoding, int standalone)
Definition expat.h:218
#define XML_STATUS_SUSPENDED
enum XML_Status XML_Parse(XML_Parser parser, const char *s, int len, int isFinal)
Definition xmlparse.c:1926
enum XML_Status XML_StopParser(XML_Parser parser, XML_Bool resumable)
Definition xmlparse.c:2234
void XML_SetUnknownEncodingHandler(XML_Parser parser, XML_UnknownEncodingHandler handler, void *encodingHandlerData)
Definition xmlparse.c:1862
enum XML_Error XML_GetErrorCode(XML_Parser parser)
Definition xmlparse.c:2318
void(* XML_CommentHandler)(void *userData, const XML_Char *data)
Definition expat.h:309
XML_ParamEntityParsing
Definition expat.h:880
@ XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE
Definition expat.h:882
@ XML_PARAM_ENTITY_PARSING_ALWAYS
Definition expat.h:883
@ XML_PARAM_ENTITY_PARSING_NEVER
Definition expat.h:881
int(* XML_UnknownEncodingHandler)(void *encodingHandlerData, const XML_Char *name, XML_Encoding *info)
Definition expat.h:548
void XML_SetDoctypeDeclHandler(XML_Parser parser, XML_StartDoctypeDeclHandler start, XML_EndDoctypeDeclHandler end)
Definition xmlparse.c:1772
void XML_SetNamespaceDeclHandler(XML_Parser parser, XML_StartNamespaceDeclHandler start, XML_EndNamespaceDeclHandler end)
Definition xmlparse.c:1807
void(* XML_ProcessingInstructionHandler)(void *userData, const XML_Char *target, const XML_Char *data)
Definition expat.h:304
XML_Parser XML_ParserCreate(const XML_Char *encoding)
Definition xmlparse.c:766
void(* XML_UnparsedEntityDeclHandler)(void *userData, const XML_Char *entityName, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName)
Definition expat.h:381
void XML_ParserFree(XML_Parser parser)
Definition xmlparse.c:1537
void XML_SetDefaultHandler(XML_Parser parser, XML_DefaultHandler handler)
Definition xmlparse.c:1756
void XML_SetEndDoctypeDeclHandler(XML_Parser parser, XML_EndDoctypeDeclHandler end)
Definition xmlparse.c:1788
XML_Size XML_GetCurrentLineNumber(XML_Parser parser)
Definition xmlparse.c:2364
void(* XML_CharacterDataHandler)(void *userData, const XML_Char *s, int len)
Definition expat.h:300
int(* XML_NotStandaloneHandler)(void *userData)
Definition expat.h:418
void XML_SetStartCdataSectionHandler(XML_Parser parser, XML_StartCdataSectionHandler start)
Definition xmlparse.c:1742
struct XML_ParserStruct * XML_Parser
Definition expat.h:55
void XML_SetNotationDeclHandler(XML_Parser parser, XML_NotationDeclHandler handler)
Definition xmlparse.c:1801
void(* XML_SkippedEntityHandler)(void *userData, const XML_Char *entityName, int is_parameter_entity)
Definition expat.h:470
void XML_SetReturnNSTriplet(XML_Parser parser, int do_nst)
Definition xmlparse.c:1626
void(* XML_StartDoctypeDeclHandler)(void *userData, const XML_Char *doctypeName, const XML_Char *sysid, const XML_Char *pubid, int has_internal_subset)
Definition expat.h:333
void(* XML_EndNamespaceDeclHandler)(void *userData, const XML_Char *prefix)
Definition expat.h:406
XML_Size XML_GetCurrentColumnNumber(XML_Parser parser)
Definition xmlparse.c:2376
void XML_SetUserData(XML_Parser parser, void *userData)
Definition xmlparse.c:1637
#define XML_STATUS_OK
Definition expat.h:78
void * XML_MemRealloc(XML_Parser parser, void *ptr, size_t size)
Definition xmlparse.c:2401
void(* XML_EndDoctypeDeclHandler)(void *userData)
Definition expat.h:343
XML_Content_Type
Definition expat.h:138
@ XML_CTYPE_ANY
Definition expat.h:140
@ XML_CTYPE_SEQ
Definition expat.h:144
@ XML_CTYPE_MIXED
Definition expat.h:141
@ XML_CTYPE_CHOICE
Definition expat.h:143
@ XML_CTYPE_EMPTY
Definition expat.h:139
@ XML_CTYPE_NAME
Definition expat.h:142
void XML_FreeContentModel(XML_Parser parser, XML_Content *model)
Definition xmlparse.c:2388
void(* XML_ElementDeclHandler)(void *userData, const XML_Char *name, XML_Content *model)
Definition expat.h:188
void XML_SetEndNamespaceDeclHandler(XML_Parser parser, XML_EndNamespaceDeclHandler end)
Definition xmlparse.c:1824
enum XML_Status XML_SetBase(XML_Parser parser, const XML_Char *base)
Definition xmlparse.c:1647
XML_Parser XML_ParserCreateNS(const XML_Char *encoding, XML_Char namespaceSeparator)
Definition xmlparse.c:771
enum XML_Error XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD)
Definition xmlparse.c:1609
void XML_SetSkippedEntityHandler(XML_Parser parser, XML_SkippedEntityHandler handler)
Definition xmlparse.c:1855
void XML_SetProcessingInstructionHandler(XML_Parser parser, XML_ProcessingInstructionHandler handler)
Definition xmlparse.c:1719
void * XML_MemMalloc(XML_Parser parser, size_t size)
Definition xmlparse.c:2394
enum XML_Status XML_ParseBuffer(XML_Parser parser, int len, int isFinal)
Definition xmlparse.c:2037
void XML_SetExternalEntityRefHandler(XML_Parser parser, XML_ExternalEntityRefHandler handler)
Definition xmlparse.c:1838
void XML_SetEndCdataSectionHandler(XML_Parser parser, XML_EndCdataSectionHandler end)
Definition xmlparse.c:1749
void XML_DefaultCurrent(XML_Parser parser)
Definition xmlparse.c:2414
void XML_SetXmlDeclHandler(XML_Parser parser, XML_XmlDeclHandler xmldecl)
Definition xmlparse.c:1889
int XML_SetHashSalt(XML_Parser parser, unsigned long hash_salt)
Definition xmlparse.c:1912
void(* XML_StartCdataSectionHandler)(void *userData)
Definition expat.h:311
const char * XML_GetInputContext(XML_Parser parser, int *offset, int *size)
Definition xmlparse.c:2344
void XML_SetExternalEntityRefHandlerArg(XML_Parser parser, void *arg)
Definition xmlparse.c:1845
void * XML_GetBuffer(XML_Parser parser, int len)
Definition xmlparse.c:2108
const XML_LChar * XML_ExpatVersion(void)
Definition xmlparse.c:2537
enum XML_Status XML_ResumeParser(XML_Parser parser)
Definition xmlparse.c:2270
XML_Parser XML_ParserCreate_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *namespaceSeparator)
Definition xmlparse.c:1058
void XML_SetUnparsedEntityDeclHandler(XML_Parser parser, XML_UnparsedEntityDeclHandler handler)
Definition xmlparse.c:1794
int XML_SetParamEntityParsing(XML_Parser parser, enum XML_ParamEntityParsing parsing)
Definition xmlparse.c:1895
XML_Status
Definition expat.h:74
XML_Parser XML_ExternalEntityParserCreate(XML_Parser parser, const XML_Char *context, const XML_Char *encoding)
Definition xmlparse.c:1354
void XML_MemFree(XML_Parser parser, void *ptr)
Definition xmlparse.c:2408
void(* XML_EntityDeclHandler)(void *userData, const XML_Char *entityName, int is_parameter_entity, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName)
Definition expat.h:363
void(* XML_EndCdataSectionHandler)(void *userData)
Definition expat.h:312
void XML_SetAttlistDeclHandler(XML_Parser parser, XML_AttlistDeclHandler attdecl)
Definition xmlparse.c:1877
XML_Expat_Version XML_ExpatVersionInfo(void)
Definition xmlparse.c:2556
#define XML_ATTR_MALLOC
char XML_Char
char XML_LChar
#define XMLCALL
unsigned long XML_Size
#define XMLPARSEAPI(type)
long XML_Index
#define XML_ATTR_ALLOC_SIZE(x)
ap_conf_vector_t * base
apr_md5_ctx_t * context
Definition util_md5.h:58
void const char * arg
Definition http_vhost.h:63
int enabled
apr_file_t apr_off_t start
const char * uri
Definition apr_uri.h:159
apr_xml_parser ** parser
Definition apr_xml.h:228
apr_size_t size
const char * value
Definition apr_env.h:51
apr_seek_where_t apr_off_t * offset
void * data
const char char ** end
const char * s
Definition apr_strings.h:95
int int status
char * name
void * data
Definition expat.h:528
const XML_LChar * name
Definition expat.h:1041
long int value
Definition expat.h:1042
enum XML_FeatureEnum feature
Definition expat.h:1040
XML_Bool finalBuffer
Definition expat.h:849
enum XML_Parsing parsing
Definition expat.h:848
XML_Content * children
Definition expat.h:179
unsigned int numchildren
Definition expat.h:178
XML_Char * name
Definition expat.h:177
enum XML_Content_Quant quant
Definition expat.h:176
enum XML_Content_Type type
Definition expat.h:175
typedef int(WSAAPI *apr_winapi_fpt_WSAPoll)(IN OUT LPWSAPOLLFD fdArray
INT info