blob: 292af57e97b8f82d1cd3a38b3ceabcdbe1607b93 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
Daniel Veillard1af9a412003-08-20 22:54:39 +00002 * SAX.c : Old SAX v1 handlers to build a tree.
3 * Deprecated except for compatibility
Owen Taylor3473f882001-02-23 17:55:21 +00004 *
5 * See Copyright for the status of this software.
6 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00007 * Daniel Veillard <daniel@veillard.com>
Owen Taylor3473f882001-02-23 17:55:21 +00008 */
9
10
Daniel Veillard34ce8be2002-03-18 19:37:11 +000011#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000012#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000013#include <stdlib.h>
14#include <string.h>
15#include <libxml/xmlmemory.h>
16#include <libxml/tree.h>
17#include <libxml/parser.h>
18#include <libxml/parserInternals.h>
19#include <libxml/valid.h>
20#include <libxml/entities.h>
21#include <libxml/xmlerror.h>
22#include <libxml/debugXML.h>
23#include <libxml/xmlIO.h>
24#include <libxml/SAX.h>
25#include <libxml/uri.h>
Daniel Veillard48da9102001-08-07 01:10:10 +000026#include <libxml/valid.h>
Owen Taylor3473f882001-02-23 17:55:21 +000027#include <libxml/HTMLtree.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000028#include <libxml/globals.h>
Daniel Veillard1af9a412003-08-20 22:54:39 +000029#include <libxml/SAX2.h>
Owen Taylor3473f882001-02-23 17:55:21 +000030
William M. Brack21e4ef22005-01-02 09:53:13 +000031#ifdef LIBXML_LEGACY_ENABLED
Daniel Veillard81273902003-09-30 00:43:48 +000032#ifdef LIBXML_SAX1_ENABLED
Daniel Veillardd0463562001-10-13 09:15:48 +000033/**
Daniel Veillard9d06d302002-01-22 18:15:52 +000034 * initxmlDefaultSAXHandler:
Daniel Veillardcbaf3992001-12-31 16:16:02 +000035 * @hdlr: the SAX handler
36 * @warning: flag if non-zero sets the handler warning procedure
Daniel Veillardd0463562001-10-13 09:15:48 +000037 *
Daniel Veillard1af9a412003-08-20 22:54:39 +000038 * Initialize the default XML SAX version 1 handler
39 * DEPRECATED: use xmlSAX2InitDefaultSAXHandler() for the new SAX2 blocks
Owen Taylor3473f882001-02-23 17:55:21 +000040 */
Daniel Veillardd0463562001-10-13 09:15:48 +000041void
Daniel Veillard092643b2003-09-25 14:29:29 +000042initxmlDefaultSAXHandler(xmlSAXHandlerV1 *hdlr, int warning)
Daniel Veillardd0463562001-10-13 09:15:48 +000043{
Daniel Veillardf8e3db02012-09-11 13:26:36 +080044
Daniel Veillardd0463562001-10-13 09:15:48 +000045 if(hdlr->initialized == 1)
46 return;
47
Daniel Veillard1af9a412003-08-20 22:54:39 +000048 hdlr->internalSubset = xmlSAX2InternalSubset;
49 hdlr->externalSubset = xmlSAX2ExternalSubset;
50 hdlr->isStandalone = xmlSAX2IsStandalone;
51 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
52 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
53 hdlr->resolveEntity = xmlSAX2ResolveEntity;
54 hdlr->getEntity = xmlSAX2GetEntity;
55 hdlr->getParameterEntity = xmlSAX2GetParameterEntity;
56 hdlr->entityDecl = xmlSAX2EntityDecl;
57 hdlr->attributeDecl = xmlSAX2AttributeDecl;
58 hdlr->elementDecl = xmlSAX2ElementDecl;
59 hdlr->notationDecl = xmlSAX2NotationDecl;
60 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl;
61 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
62 hdlr->startDocument = xmlSAX2StartDocument;
63 hdlr->endDocument = xmlSAX2EndDocument;
64 hdlr->startElement = xmlSAX2StartElement;
65 hdlr->endElement = xmlSAX2EndElement;
66 hdlr->reference = xmlSAX2Reference;
67 hdlr->characters = xmlSAX2Characters;
68 hdlr->cdataBlock = xmlSAX2CDataBlock;
69 hdlr->ignorableWhitespace = xmlSAX2Characters;
70 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
Daniel Veillardd0463562001-10-13 09:15:48 +000071 if (warning == 0)
72 hdlr->warning = NULL;
73 else
74 hdlr->warning = xmlParserWarning;
75 hdlr->error = xmlParserError;
76 hdlr->fatalError = xmlParserError;
77
78 hdlr->initialized = 1;
79}
Owen Taylor3473f882001-02-23 17:55:21 +000080
Daniel Veillardeae522a2001-04-23 13:41:34 +000081#ifdef LIBXML_HTML_ENABLED
Daniel Veillardd0463562001-10-13 09:15:48 +000082
83/**
Daniel Veillard9d06d302002-01-22 18:15:52 +000084 * inithtmlDefaultSAXHandler:
Daniel Veillardcbaf3992001-12-31 16:16:02 +000085 * @hdlr: the SAX handler
Daniel Veillardd0463562001-10-13 09:15:48 +000086 *
Daniel Veillard1af9a412003-08-20 22:54:39 +000087 * Initialize the default HTML SAX version 1 handler
88 * DEPRECATED: use xmlSAX2InitHtmlDefaultSAXHandler() for the new SAX2 blocks
Owen Taylor3473f882001-02-23 17:55:21 +000089 */
Daniel Veillardd0463562001-10-13 09:15:48 +000090void
Daniel Veillard092643b2003-09-25 14:29:29 +000091inithtmlDefaultSAXHandler(xmlSAXHandlerV1 *hdlr)
Daniel Veillardd0463562001-10-13 09:15:48 +000092{
93 if(hdlr->initialized == 1)
94 return;
95
Daniel Veillard1af9a412003-08-20 22:54:39 +000096 hdlr->internalSubset = xmlSAX2InternalSubset;
Daniel Veillardd0463562001-10-13 09:15:48 +000097 hdlr->externalSubset = NULL;
98 hdlr->isStandalone = NULL;
99 hdlr->hasInternalSubset = NULL;
100 hdlr->hasExternalSubset = NULL;
101 hdlr->resolveEntity = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000102 hdlr->getEntity = xmlSAX2GetEntity;
Daniel Veillardd0463562001-10-13 09:15:48 +0000103 hdlr->getParameterEntity = NULL;
104 hdlr->entityDecl = NULL;
105 hdlr->attributeDecl = NULL;
106 hdlr->elementDecl = NULL;
107 hdlr->notationDecl = NULL;
108 hdlr->unparsedEntityDecl = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000109 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
110 hdlr->startDocument = xmlSAX2StartDocument;
111 hdlr->endDocument = xmlSAX2EndDocument;
112 hdlr->startElement = xmlSAX2StartElement;
113 hdlr->endElement = xmlSAX2EndElement;
Daniel Veillardd0463562001-10-13 09:15:48 +0000114 hdlr->reference = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000115 hdlr->characters = xmlSAX2Characters;
116 hdlr->cdataBlock = xmlSAX2CDataBlock;
117 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
Daniel Veillardfc484dd2004-10-22 14:34:23 +0000118 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000119 hdlr->comment = xmlSAX2Comment;
Daniel Veillardd0463562001-10-13 09:15:48 +0000120 hdlr->warning = xmlParserWarning;
121 hdlr->error = xmlParserError;
122 hdlr->fatalError = xmlParserError;
123
124 hdlr->initialized = 1;
125}
Owen Taylor3473f882001-02-23 17:55:21 +0000126
Daniel Veillardeae522a2001-04-23 13:41:34 +0000127#endif /* LIBXML_HTML_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000128
Daniel Veillardeae522a2001-04-23 13:41:34 +0000129#ifdef LIBXML_DOCB_ENABLED
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000130/**
Daniel Veillard9d06d302002-01-22 18:15:52 +0000131 * initdocbDefaultSAXHandler:
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000132 * @hdlr: the SAX handler
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000133 *
Daniel Veillard1af9a412003-08-20 22:54:39 +0000134 * Initialize the default DocBook SAX version 1 handler
135 * DEPRECATED: use xmlSAX2InitDocbDefaultSAXHandler() for the new SAX2 blocks
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000136 */
Daniel Veillardd0463562001-10-13 09:15:48 +0000137void
Daniel Veillard092643b2003-09-25 14:29:29 +0000138initdocbDefaultSAXHandler(xmlSAXHandlerV1 *hdlr)
Daniel Veillardd0463562001-10-13 09:15:48 +0000139{
140 if(hdlr->initialized == 1)
141 return;
142
Daniel Veillard1af9a412003-08-20 22:54:39 +0000143 hdlr->internalSubset = xmlSAX2InternalSubset;
Daniel Veillardd0463562001-10-13 09:15:48 +0000144 hdlr->externalSubset = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000145 hdlr->isStandalone = xmlSAX2IsStandalone;
146 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
147 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
148 hdlr->resolveEntity = xmlSAX2ResolveEntity;
149 hdlr->getEntity = xmlSAX2GetEntity;
Daniel Veillardd0463562001-10-13 09:15:48 +0000150 hdlr->getParameterEntity = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000151 hdlr->entityDecl = xmlSAX2EntityDecl;
Daniel Veillardd0463562001-10-13 09:15:48 +0000152 hdlr->attributeDecl = NULL;
153 hdlr->elementDecl = NULL;
154 hdlr->notationDecl = NULL;
155 hdlr->unparsedEntityDecl = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000156 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
157 hdlr->startDocument = xmlSAX2StartDocument;
158 hdlr->endDocument = xmlSAX2EndDocument;
159 hdlr->startElement = xmlSAX2StartElement;
160 hdlr->endElement = xmlSAX2EndElement;
161 hdlr->reference = xmlSAX2Reference;
162 hdlr->characters = xmlSAX2Characters;
Daniel Veillardd0463562001-10-13 09:15:48 +0000163 hdlr->cdataBlock = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000164 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
Daniel Veillardd0463562001-10-13 09:15:48 +0000165 hdlr->processingInstruction = NULL;
Daniel Veillard1af9a412003-08-20 22:54:39 +0000166 hdlr->comment = xmlSAX2Comment;
Daniel Veillardd0463562001-10-13 09:15:48 +0000167 hdlr->warning = xmlParserWarning;
168 hdlr->error = xmlParserError;
169 hdlr->fatalError = xmlParserError;
170
171 hdlr->initialized = 1;
172}
Owen Taylor3473f882001-02-23 17:55:21 +0000173
Daniel Veillardeae522a2001-04-23 13:41:34 +0000174#endif /* LIBXML_DOCB_ENABLED */
William M. Brack21e4ef22005-01-02 09:53:13 +0000175
176#endif /* LIBXML_SAX1_ENABLED */
177
Daniel Veillard5d4644e2005-04-01 13:11:58 +0000178#define bottom_SAX
179#include "elfgcchack.h"
William M. Brack21e4ef22005-01-02 09:53:13 +0000180#endif /* LIBXML_LEGACY_ENABLED */