1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

Time to commit 3 days of work rewriting the parser internal,

fixing bugs and migrating to SAX2 interface by default. There
is some work letf TODO, like namespace validation and attributes
normalization (this break C14N right now)
* Makefile.am: fixed the test rules
* include/libxml/SAX2.h include/libxml/parser.h
  include/libxml/parserInternals.h SAX2.c parser.c
  parserInternals.c: changing the parser, migrating to SAX2,
  adding new interface to switch back to SAX1 or initialize a
  SAX block for v1 or v2. Most of the namespace work is done
  below SAX, as well as attribute defaulting
* globals.c: changed initialization of the default SAX handlers
* hash.c tree.c include/libxml/hash.h: added QName specific handling
* xmlIO.c: small fix
* xmllint.c testSAX.c: provide a --sax1 switch to test the old
  version code path
* result/p3p result/p3p.sax result/noent/p3p test/p3p: the new code
  pointed out a typo in a very old test namespace
Daniel
This commit is contained in:
Daniel Veillard
2003-09-10 10:51:05 +00:00
parent 8e36e6a0be
commit 07cb8226c0
17 changed files with 382 additions and 162 deletions

View File

@ -222,11 +222,14 @@ XMLtests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/$$name ] ; then \ if [ ! -f $(srcdir)/result/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/$$name ; \ $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff $(srcdir)/result/$$name result.$$name ; \ diff $(srcdir)/result/$$name result.$$name ; \
$(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \ $(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff result.$$name result2.$$name ; \ diff result.$$name result2.$$name ; \
rm result.$$name result2.$$name ; \ rm result.$$name result2.$$name ; \
fi ; fi ; done) fi ; fi ; done)
@ -242,11 +245,14 @@ XMLtests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/$$name ] ; then \ if [ ! -f $(srcdir)/result/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --push $$i > $(srcdir)/result/$$name ; \ $(CHECKER) $(top_builddir)/xmllint --push $$i > $(srcdir)/result/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --push $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --push $$i > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff $(srcdir)/result/$$name result.$$name ; \ diff $(srcdir)/result/$$name result.$$name ; \
$(CHECKER) $(top_builddir)/xmllint --push result.$$name > result2.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --push result.$$name > result2.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff result.$$name result2.$$name ; \ diff result.$$name result2.$$name ; \
rm result.$$name result2.$$name ; \ rm result.$$name result2.$$name ; \
fi ; fi ; done) fi ; fi ; done)
@ -261,12 +267,14 @@ XMLtests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/$$name ] ; then \ if [ ! -f $(srcdir)/result/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --memory $$i > $(srcdir)/result/$$name ; \ $(CHECKER) $(top_builddir)/xmllint --memory $$i > $(srcdir)/result/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --memory $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --memory $$i > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
diff $(srcdir)/result/$$name result.$$name ; \ diff $(srcdir)/result/$$name result.$$name ; \
$(CHECKER) $(top_builddir)/xmllint --memory result.$$name > result2.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --memory result.$$name > result2.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff result.$$name result2.$$name ; \ diff result.$$name result2.$$name ; \
rm result.$$name result2.$$name ; \ rm result.$$name result2.$$name ; \
fi ; fi ; done) fi ; fi ; done)
@ -302,11 +310,14 @@ XMLenttests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/noent/$$name ] ; then \ if [ ! -f $(srcdir)/result/noent/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --noent $$i > $(srcdir)/result/noent/$$name ; \ $(CHECKER) $(top_builddir)/xmllint --noent $$i > $(srcdir)/result/noent/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --noent $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --noent $$i > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff $(srcdir)/result/noent/$$name result.$$name ; \ diff $(srcdir)/result/noent/$$name result.$$name ; \
$(CHECKER) $(top_builddir)/xmllint --noent result.$$name > result2.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --noent result.$$name > result2.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
diff result.$$name result2.$$name ; \ diff result.$$name result2.$$name ; \
rm result.$$name result2.$$name ; \ rm result.$$name result2.$$name ; \
fi ; fi ; done) fi ; fi ; done)
@ -322,6 +333,7 @@ URItests : testURI$(EXEEXT)
if [ ! -f $(srcdir)/result/URI/$$name ] ; then \ if [ ! -f $(srcdir)/result/URI/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > $(srcdir)/result/URI/$$name ; \ $(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > $(srcdir)/result/URI/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > result.$$name ; \
@ -335,6 +347,7 @@ URItests : testURI$(EXEEXT)
if [ ! -f $(srcdir)/result/URI/$$name ] ; then \ if [ ! -f $(srcdir)/result/URI/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/testURI < $$i > $(srcdir)/result/URI/$$name ; \ $(CHECKER) $(top_builddir)/testURI < $$i > $(srcdir)/result/URI/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/testURI < $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/testURI < $$i > result.$$name ; \
@ -399,10 +412,11 @@ XPtrtests : testXPath$(EXEEXT)
if [ ! -d $$j ] ; then \ if [ ! -d $$j ] ; then \
if [ ! -f $(srcdir)/result/XPath/xptr/$$name ] ; then \ if [ ! -f $(srcdir)/result/XPath/xptr/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
./testXPath -xptr -f -i $$i $$j > $(srcdir)/result/XPath/xptr/$$name ; \ $(CHECKER) $(top_builddir)/testXPath -xptr -f -i $$i $$j > $(srcdir)/result/XPath/xptr/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
./testXPath -xptr -f -i $$i $$j > result.$$name ; \ $(CHECKER) $(top_builddir)/testXPath -xptr -f -i $$i $$j > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
diff $(srcdir)/result/XPath/xptr/$$name result.$$name ; \ diff $(srcdir)/result/XPath/xptr/$$name result.$$name ; \
rm result.$$name ; \ rm result.$$name ; \
@ -421,6 +435,7 @@ XIncludetests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/XInclude/$$name ] ; then \ if [ ! -f $(srcdir)/result/XInclude/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > $(srcdir)/result/XInclude/$$name ; \ $(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > $(srcdir)/result/XInclude/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > result.$$name ; \
@ -442,6 +457,7 @@ Scripttests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/scripts/$$name ] ; then \ if [ ! -f $(srcdir)/result/scripts/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > $(srcdir)/result/scripts/$$name ; \ $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > $(srcdir)/result/scripts/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > result.$$name ; \
@ -462,6 +478,7 @@ Catatests : xmlcatalog$(EXEEXT)
if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \ if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > $(srcdir)/result/catalogs/$$name ; \ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > $(srcdir)/result/catalogs/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > result.$$name ; \
@ -476,6 +493,7 @@ Catatests : xmlcatalog$(EXEEXT)
if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \ if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > $(srcdir)/result/catalogs/$$name ; \ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > $(srcdir)/result/catalogs/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > result.$$name ; \
@ -514,11 +532,14 @@ SVGtests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/SVG/$$name ] ; then \ if [ ! -f $(srcdir)/result/SVG/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/SVG/$$name ; \ $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/SVG/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
diff $(srcdir)/result/SVG/$$name result.$$name ; \ diff $(srcdir)/result/SVG/$$name result.$$name ; \
$(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \ $(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
diff result.$$name result2.$$name ; \ diff result.$$name result2.$$name ; \
rm result.$$name result2.$$name ; \ rm result.$$name result2.$$name ; \
fi ; fi ; done) fi ; fi ; done)
@ -527,7 +548,8 @@ Threadtests : testThreads$(EXEEXT)
@echo "##" @echo "##"
@echo "## Threaded regression tests" @echo "## Threaded regression tests"
@echo "##" @echo "##"
$(CHECKER) $(top_builddir)/testThreads -@($(CHECKER) $(top_builddir)/testThreads ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";)
SAXtests : testSAX$(EXEEXT) SAXtests : testSAX$(EXEEXT)
@(echo > .memdump) @(echo > .memdump)
@ -540,9 +562,11 @@ SAXtests : testSAX$(EXEEXT)
if [ ! -f $(srcdir)/result/$$name.sax ] ; then \ if [ ! -f $(srcdir)/result/$$name.sax ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/testSAX $$i > $(srcdir)/result/$$name.sax ; \ $(CHECKER) $(top_builddir)/testSAX $$i > $(srcdir)/result/$$name.sax ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/testSAX $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/testSAX $$i > result.$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
diff $(srcdir)/result/$$name.sax result.$$name ; \ diff $(srcdir)/result/$$name.sax result.$$name ; \
rm result.$$name ; \ rm result.$$name ; \
fi ; fi ; done) fi ; fi ; done)
@ -569,6 +593,7 @@ Validtests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/VC/$$name ] ; then \ if [ ! -f $(srcdir)/result/VC/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> $(srcdir)/result/VC/$$name ; \ $(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> $(srcdir)/result/VC/$$name ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> result.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> result.$$name ; \
@ -585,6 +610,7 @@ Validtests : xmllint$(EXEEXT)
if [ ! -f $(srcdir)/result/valid/$$name ] ; then \ if [ ! -f $(srcdir)/result/valid/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --valid $$i > $(srcdir)/result/valid/$$name 2>$(srcdir)/result/valid/$$name.err ; \ $(CHECKER) $(top_builddir)/xmllint --valid $$i > $(srcdir)/result/valid/$$name 2>$(srcdir)/result/valid/$$name.err ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --valid $$i > result.$$name 2>error.$$name ; \ $(CHECKER) $(top_builddir)/xmllint --valid $$i > result.$$name 2>error.$$name ; \
@ -605,6 +631,7 @@ Regexptests: testRegexp$(EXEEXT)
if [ ! -f $(srcdir)/result/regexp/$$name ] ; then \ if [ ! -f $(srcdir)/result/regexp/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/testRegexp -i $$i > $(srcdir)/result/regexp/$$name; \ $(CHECKER) $(top_builddir)/testRegexp -i $$i > $(srcdir)/result/regexp/$$name; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/testRegexp -i $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/testRegexp -i $$i > result.$$name ; \
@ -624,6 +651,7 @@ Automatatests: testAutomata$(EXEEXT)
if [ ! -f $(srcdir)/result/automata/$$name ] ; then \ if [ ! -f $(srcdir)/result/automata/$$name ] ; then \
echo New test file $$name ; \ echo New test file $$name ; \
$(CHECKER) $(top_builddir)/testAutomata $$i > $(srcdir)/result/automata/$$name; \ $(CHECKER) $(top_builddir)/testAutomata $$i > $(srcdir)/result/automata/$$name; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing $$name ; \ echo Testing $$name ; \
$(CHECKER) $(top_builddir)/testAutomata $$i > result.$$name ; \ $(CHECKER) $(top_builddir)/testAutomata $$i > result.$$name ; \
@ -658,6 +686,7 @@ C14Ntests : testC14N$(EXEEXT)
else \ else \
echo "C14N failed"; \ echo "C14N failed"; \
fi; \ fi; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
fi; \ fi; \
rm -f $(srcdir)/test/c14n/test.tmp; \ rm -f $(srcdir)/test/c14n/test.tmp; \
done; \ done; \
@ -680,6 +709,7 @@ Schemastests: testSchemas$(EXEEXT)
$(CHECKER) $(top_builddir)/testSchemas $$i $$j \ $(CHECKER) $(top_builddir)/testSchemas $$i $$j \
> $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" \ > $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" \
2> $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno".err; \ 2> $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno".err; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing "$$name"_"$$sno"_"$$xno" ; \ echo Testing "$$name"_"$$sno"_"$$xno" ; \
$(CHECKER) $(top_builddir)/testSchemas $$i $$j \ $(CHECKER) $(top_builddir)/testSchemas $$i $$j \
@ -706,6 +736,7 @@ Relaxtests: xmllint$(EXEEXT)
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $(srcdir)/test/relaxng/tutorA.rng $$i \ $(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $(srcdir)/test/relaxng/tutorA.rng $$i \
> $(srcdir)/result/relaxng/"$$name"_valid \ > $(srcdir)/result/relaxng/"$$name"_valid \
2> $(srcdir)/result/relaxng/"$$name"_err; \ 2> $(srcdir)/result/relaxng/"$$name"_err; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Checking schemas $$name ; \ echo Checking schemas $$name ; \
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $(srcdir)/test/relaxng/tutorA.rng $$i \ $(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $(srcdir)/test/relaxng/tutorA.rng $$i \
@ -727,6 +758,7 @@ Relaxtests: xmllint$(EXEEXT)
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $$i $$j \ $(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $$i $$j \
> $(srcdir)/result/relaxng/"$$name"_"$$xno" \ > $(srcdir)/result/relaxng/"$$name"_"$$xno" \
2> $(srcdir)/result/relaxng/"$$name"_"$$xno".err; \ 2> $(srcdir)/result/relaxng/"$$name"_"$$xno".err; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing "$$name"_"$$xno" ; \ echo Testing "$$name"_"$$xno" ; \
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $$i $$j \ $(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $$i $$j \
@ -757,6 +789,7 @@ Relaxtests: xmllint$(EXEEXT)
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $$i $$j \ $(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --relaxng $$i $$j \
> $(srcdir)/result/relaxng/"$$name"_"$$xno" \ > $(srcdir)/result/relaxng/"$$name"_"$$xno" \
2> $(srcdir)/result/relaxng/"$$name"_"$$xno".err; \ 2> $(srcdir)/result/relaxng/"$$name"_"$$xno".err; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \ else \
echo Testing "$$name"_"$$xno" ; \ echo Testing "$$name"_"$$xno" ; \
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --stream --relaxng $$i $$j \ $(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --noout --stream --relaxng $$i $$j \

9
NEWS
View File

@ -15,16 +15,21 @@ to test those - More testing on RelaxNG
Schemas Schemas
2.5.11: Sep 9 2003:
A bugfix only release: - risk of crash in Relax-NG
- risk of crash when using multithreaded programs
2.5.10: Aug 15 2003: 2.5.10: Aug 15 2003:
A bugfixes only release - Windows Makefiles (William Brack) A bugfixes only release - Windows Makefiles (William Brack)
- UTF-16 support fixes (Mark Itzcovitz) - UTF-16 support fixes (Mark Itzcovitz)
- Makefile and portability (William Brack) automake, Linux alpha, Mingw - Makefile and portability (William Brack) automake, Linux alpha, Mingw
on Windows (Mikhail Grushinskiy) on Windows (Mikhail Grushinskiy)
- HTML parser (Oliver Stoeneberg) - HTML parser (Oliver Stoeneberg)
- XInclude performance problem reported by Kevin Ruscoe - XInclude performance problem reported by Kevin Ruscoe
- XML parser performance problem reported by Grant Goodale - XML parser performance problem reported by Grant Goodale
- xmlSAXParseDTD() bug fix from Malcolm Tredinnick - xmlSAXParseDTD() bug fix from Malcolm Tredinnick
- and a couple other cleanup - and a couple other cleanup
2.5.9: Aug 9 2003: 2.5.9: Aug 9 2003:

2
dict.c
View File

@ -274,8 +274,6 @@ xmlDictLookup(xmlDictPtr dict, const xmlChar *name, int len) {
if (len < 0) if (len < 0)
len = xmlStrlen(name); len = xmlStrlen(name);
if (len <= 0)
return(NULL);
/* /*
* Check for duplicate and insertion location. * Check for duplicate and insertion location.

View File

@ -361,7 +361,6 @@ xmlSAXHandler xmlDefaultSAXHandler = {
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
@ -415,7 +414,6 @@ xmlSAXHandler htmlDefaultSAXHandler = {
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif /* LIBXML_HTML_ENABLED */ #endif /* LIBXML_HTML_ENABLED */
@ -457,7 +455,6 @@ xmlSAXHandler docbDefaultSAXHandler = {
0, 0,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
#endif /* LIBXML_DOCB_ENABLED */ #endif /* LIBXML_DOCB_ENABLED */
@ -486,16 +483,16 @@ xmlInitializeGlobalState(xmlGlobalStatePtr gs)
xmlMutexLock(xmlThrDefMutex); xmlMutexLock(xmlThrDefMutex);
#ifdef LIBXML_DOCB_ENABLED #ifdef LIBXML_DOCB_ENABLED
initdocbDefaultSAXHandler(&gs->docbDefaultSAXHandler); xmlSAX2InitDocbDefaultSAXHandler(&gs->docbDefaultSAXHandler);
#endif #endif
#ifdef LIBXML_HTML_ENABLED #ifdef LIBXML_HTML_ENABLED
inithtmlDefaultSAXHandler(&gs->htmlDefaultSAXHandler); xmlSAX2InitHtmlDefaultSAXHandler(&gs->htmlDefaultSAXHandler);
#endif #endif
gs->oldXMLWDcompatibility = 0; gs->oldXMLWDcompatibility = 0;
gs->xmlBufferAllocScheme = xmlBufferAllocSchemeThrDef; gs->xmlBufferAllocScheme = xmlBufferAllocSchemeThrDef;
gs->xmlDefaultBufferSize = xmlDefaultBufferSizeThrDef; gs->xmlDefaultBufferSize = xmlDefaultBufferSizeThrDef;
initxmlDefaultSAXHandler(&gs->xmlDefaultSAXHandler, 1); xmlSAX2InitDefaultSAXHandler(&gs->xmlDefaultSAXHandler, 1);
gs->xmlDefaultSAXLocator.getPublicId = getPublicId; gs->xmlDefaultSAXLocator.getPublicId = getPublicId;
gs->xmlDefaultSAXLocator.getSystemId = getSystemId; gs->xmlDefaultSAXLocator.getSystemId = getSystemId;
gs->xmlDefaultSAXLocator.getLineNumber = getLineNumber; gs->xmlDefaultSAXLocator.getLineNumber = getLineNumber;

View File

@ -103,6 +103,21 @@ XMLPUBFUN void XMLCALL
XMLPUBFUN void XMLCALL XMLPUBFUN void XMLCALL
xmlSAX2EndElement (void *ctx, xmlSAX2EndElement (void *ctx,
const xmlChar *name); const xmlChar *name);
XMLPUBFUN void XMLCALL
xmlSAX2StartElementNs (void *ctx,
const xmlChar *localname,
const xmlChar *prefix,
const xmlChar *URI,
int nb_namespaces,
const xmlChar **namespaces,
int nb_attributes,
int nb_defaulted,
const xmlChar **attributes);
XMLPUBFUN void XMLCALL
xmlSAX2EndElementNs (void *ctx,
const xmlChar *localname,
const xmlChar *prefix,
const xmlChar *URI);
XMLPUBFUN void XMLCALL XMLPUBFUN void XMLCALL
xmlSAX2Reference (void *ctx, xmlSAX2Reference (void *ctx,
const xmlChar *name); const xmlChar *name);
@ -142,6 +157,12 @@ XMLPUBFUN void XMLCALL
const xmlChar *value, const xmlChar *value,
int len); int len);
XMLPUBFUN int XMLCALL
xmlSAXDefaultVersion (int version);
XMLPUBFUN int XMLCALL
xmlSAXVersion (xmlSAXHandler *hdlr,
int version);
XMLPUBFUN void XMLCALL XMLPUBFUN void XMLCALL
xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr, xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr,
int warning); int warning);

View File

@ -150,6 +150,24 @@ XMLPUBFUN void * XMLCALL
const xmlChar *name, const xmlChar *name,
const xmlChar *name2, const xmlChar *name2,
const xmlChar *name3); const xmlChar *name3);
XMLPUBFUN void * XMLCALL
xmlHashQLookup (xmlHashTablePtr table,
const xmlChar *name,
const xmlChar *prefix);
XMLPUBFUN void * XMLCALL
xmlHashQLookup2 (xmlHashTablePtr table,
const xmlChar *name,
const xmlChar *prefix,
const xmlChar *name2,
const xmlChar *prefix2);
XMLPUBFUN void * XMLCALL
xmlHashQLookup3 (xmlHashTablePtr table,
const xmlChar *name,
const xmlChar *prefix,
const xmlChar *name2,
const xmlChar *prefix2,
const xmlChar *name3,
const xmlChar *prefix3);
/* /*
* Helpers. * Helpers.

View File

@ -12,6 +12,7 @@
#include <libxml/xmlversion.h> #include <libxml/xmlversion.h>
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/dict.h> #include <libxml/dict.h>
#include <libxml/hash.h>
#include <libxml/valid.h> #include <libxml/valid.h>
#include <libxml/entities.h> #include <libxml/entities.h>
@ -246,14 +247,19 @@ struct _xmlParserCtxt {
*/ */
const xmlChar *str_xml; const xmlChar *str_xml;
const xmlChar *str_xmlns; const xmlChar *str_xmlns;
const xmlChar *str_xml_ns;
/* /*
* Everything below is related to the new SAX mode * Everything below is used only by the new SAX mode
*/ */
int sax2; /* operating in the new SAX mode */ int sax2; /* operating in the new SAX mode */
int nsNr; /* the number of inherited namespaces */ int nsNr; /* the number of inherited namespaces */
int nsMax; /* the size of the arrays */ int nsMax; /* the size of the arrays */
const xmlChar * *nsTab; /* the array of prefix/namespace name */ const xmlChar * *nsTab; /* the array of prefix/namespace name */
int *attallocs; /* which attribute were allocated */
void * *pushTab; /* array of data for push */
xmlHashTablePtr attsDefault; /* defaulted attributes if any */
xmlHashTablePtr attsSpecial; /* non-CDATA attributes if any */
}; };
/** /**
@ -622,12 +628,14 @@ typedef int (*hasExternalSubsetSAXFunc) (void *ctx);
* @nb_namespaces: number of namespace definitions on that node * @nb_namespaces: number of namespace definitions on that node
* @namespaces: pointer to the array of prefix/URI pairs namespace definitions * @namespaces: pointer to the array of prefix/URI pairs namespace definitions
* @nb_attributes: the number of attributes on that node * @nb_attributes: the number of attributes on that node
* @nb_defaulted: the number of defaulted attributes. The defaulted
* ones are at the end of the array
* @attributes: pointer to the array of (localname/prefix/URI/value/end)
* attribute values.
* *
* SAX2 callback when an element start has been detected by the parser. * SAX2 callback when an element start has been detected by the parser.
* It provides the namespace informations for the element, as well as * It provides the namespace informations for the element, as well as
* the new namespace declarations on the element. * the new namespace declarations on the element.
* The number of attributes is given in this callback but the attributes
* themselves will be provided as separate callbacks.
*/ */
typedef void (*startElementNsSAX2Func) (void *ctx, typedef void (*startElementNsSAX2Func) (void *ctx,
@ -636,7 +644,9 @@ typedef void (*startElementNsSAX2Func) (void *ctx,
const xmlChar *URI, const xmlChar *URI,
int nb_namespaces, int nb_namespaces,
const xmlChar **namespaces, const xmlChar **namespaces,
int nb_attributes); int nb_attributes,
int nb_defaulted,
const xmlChar **attributes);
/** /**
* endElementNsSAX2Func: * endElementNsSAX2Func:
@ -654,26 +664,6 @@ typedef void (*endElementNsSAX2Func) (void *ctx,
const xmlChar *prefix, const xmlChar *prefix,
const xmlChar *URI); const xmlChar *URI);
/**
* attributeNsSAX2Func:
* @ctx: the user data (XML parser context)
* @localname: the local name of the attribute
* @prefix: the attribute namespace prefix if available
* @URI: the attribute namespace name if available
* @value: pointer to the attribute value string
* @valuelen: lenght of the attribute value string in bytes
*
* SAX2 callback when an attribute has been detected by the parser.
* It provides the namespace informations for the attribute, as well as
* the value of the attribute (note that @value may not be zero terminated
* and use of the @valuelen is needed to find the value end).
*/
typedef void (*attributeNsSAX2Func) (void *ctx,
const xmlChar *localname,
const xmlChar *prefix,
const xmlChar *URI,
const xmlChar *value,
int valuelen);
struct _xmlSAXHandler { struct _xmlSAXHandler {
internalSubsetSAXFunc internalSubset; internalSubsetSAXFunc internalSubset;
@ -703,12 +693,11 @@ struct _xmlSAXHandler {
getParameterEntitySAXFunc getParameterEntity; getParameterEntitySAXFunc getParameterEntity;
cdataBlockSAXFunc cdataBlock; cdataBlockSAXFunc cdataBlock;
externalSubsetSAXFunc externalSubset; externalSubsetSAXFunc externalSubset;
int initialized; unsigned int initialized;
/* The following fields are extensions available only on version 2 */ /* The following fields are extensions available only on version 2 */
void *_private; void *_private;
startElementNsSAX2Func startElementNs; startElementNsSAX2Func startElementNs;
endElementNsSAX2Func endElementNs; endElementNsSAX2Func endElementNs;
attributeNsSAX2Func attributeNs;
}; };
/** /**
@ -823,6 +812,10 @@ XMLPUBFUN int XMLCALL
XMLPUBFUN int XMLCALL XMLPUBFUN int XMLCALL
xmlStrEqual (const xmlChar *str1, xmlStrEqual (const xmlChar *str1,
const xmlChar *str2); const xmlChar *str2);
XMLPUBFUN int XMLCALL
xmlStrQEqual (const xmlChar *pref,
const xmlChar *name,
const xmlChar *str);
XMLPUBFUN int XMLCALL XMLPUBFUN int XMLCALL
xmlStrlen (const xmlChar *str); xmlStrlen (const xmlChar *str);
XMLPUBFUN xmlChar * XMLCALL XMLPUBFUN xmlChar * XMLCALL

View File

@ -394,18 +394,28 @@ XMLPUBFUN void XMLCALL
*/ */
#define XML_SUBSTITUTE_BOTH 3 #define XML_SUBSTITUTE_BOTH 3
XMLPUBFUN xmlChar * XMLCALL xmlDecodeEntities (xmlParserCtxtPtr ctxt, XMLPUBFUN xmlChar * XMLCALL
xmlDecodeEntities (xmlParserCtxtPtr ctxt,
int len, int len,
int what, int what,
xmlChar end, xmlChar end,
xmlChar end2, xmlChar end2,
xmlChar end3); xmlChar end3);
XMLPUBFUN xmlChar * XMLCALL xmlStringDecodeEntities (xmlParserCtxtPtr ctxt, XMLPUBFUN xmlChar * XMLCALL
xmlStringDecodeEntities (xmlParserCtxtPtr ctxt,
const xmlChar *str, const xmlChar *str,
int what, int what,
xmlChar end, xmlChar end,
xmlChar end2, xmlChar end2,
xmlChar end3); xmlChar end3);
XMLPUBFUN xmlChar * XMLCALL
xmlStringLenDecodeEntities (xmlParserCtxtPtr ctxt,
const xmlChar *str,
int len,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3);
/* /*
* Generated by MACROS on top of parser.c c.f. PUSH_AND_POP. * Generated by MACROS on top of parser.c c.f. PUSH_AND_POP.

View File

@ -1,5 +1,5 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<RDF:RDF xmlns:p3p="http//www.w3.org/TR/1998/WD-P3P10-syntax#proposal.DTD" xmlns:RDF="http://www.w3.org/TR/WD-rdf-syntax#"> <RDF:RDF xmlns:p3p="http://www.w3.org/TR/1998/WD-P3P10-syntax#proposal.DTD" xmlns:RDF="http://www.w3.org/TR/WD-rdf-syntax#">
<PROP realm="http://www.CoolCatalog.com/catalogue/" entity="CoolCatalog" agreeID="94df1293a3e519bb" assurance="http://www.TrustUs.org"> <PROP realm="http://www.CoolCatalog.com/catalogue/" entity="CoolCatalog" agreeID="94df1293a3e519bb" assurance="http://www.TrustUs.org">
<USES> <USES>
<STATEMENT purp="2,3" recpnt="0" id="0" consq="a site with clothes you'd appreciate."> <STATEMENT purp="2,3" recpnt="0" id="0" consq="a site with clothes you'd appreciate.">

View File

@ -1,5 +1,5 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<RDF:RDF xmlns:p3p="http//www.w3.org/TR/1998/WD-P3P10-syntax#proposal.DTD" xmlns:RDF="http://www.w3.org/TR/WD-rdf-syntax#"> <RDF:RDF xmlns:p3p="http://www.w3.org/TR/1998/WD-P3P10-syntax#proposal.DTD" xmlns:RDF="http://www.w3.org/TR/WD-rdf-syntax#">
<PROP realm="http://www.CoolCatalog.com/catalogue/" entity="CoolCatalog" agreeID="94df1293a3e519bb" assurance="http://www.TrustUs.org"> <PROP realm="http://www.CoolCatalog.com/catalogue/" entity="CoolCatalog" agreeID="94df1293a3e519bb" assurance="http://www.TrustUs.org">
<USES> <USES>
<STATEMENT purp="2,3" recpnt="0" id="0" consq="a site with clothes you'd appreciate."> <STATEMENT purp="2,3" recpnt="0" id="0" consq="a site with clothes you'd appreciate.">

View File

@ -1,5 +1,5 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<RDF:RDF xmlns:p3p="http//www.w3.org/TR/1998/WD-P3P10-syntax#proposal.DTD" <RDF:RDF xmlns:p3p="http://www.w3.org/TR/1998/WD-P3P10-syntax#proposal.DTD"
xmlns:RDF="http://www.w3.org/TR/WD-rdf-syntax#"> xmlns:RDF="http://www.w3.org/TR/WD-rdf-syntax#">
<PROP realm="http://www.CoolCatalog.com/catalogue/" <PROP realm="http://www.CoolCatalog.com/catalogue/"
entity="CoolCatalog" agreeID="94df1293a3e519bb" entity="CoolCatalog" agreeID="94df1293a3e519bb"

View File

@ -81,8 +81,7 @@ xmlSAXHandler emptySAXHandlerStruct = {
1, 1,
NULL, NULL,
NULL, /* startElementNs */ NULL, /* startElementNs */
NULL, /* endElementNs */ NULL /* endElementNs */
NULL /* attributeNs */
}; };
xmlSAXHandlerPtr emptySAXHandler = &emptySAXHandlerStruct; xmlSAXHandlerPtr emptySAXHandler = &emptySAXHandlerStruct;
@ -306,19 +305,20 @@ entityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type,
* An attribute definition has been parsed * An attribute definition has been parsed
*/ */
static void static void
attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *elem, const xmlChar *name, attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar * elem,
int type, int def, const xmlChar *defaultValue, const xmlChar * name, int type, int def,
xmlEnumerationPtr tree ATTRIBUTE_UNUSED) const xmlChar * defaultValue, xmlEnumerationPtr tree)
{ {
callbacks++; callbacks++;
if (quiet) if (quiet)
return; return;
if (defaultValue == NULL) if (defaultValue == NULL)
fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, NULL, ...)\n", fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, NULL, ...)\n",
elem, name, type, def); elem, name, type, def);
else else
fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, %s, ...)\n", fprintf(stdout, "SAX.attributeDecl(%s, %s, %d, %d, %s, ...)\n",
elem, name, type, def, defaultValue); elem, name, type, def, defaultValue);
xmlFreeEnumeration(tree);
} }
/** /**
@ -693,7 +693,6 @@ xmlSAXHandler debugSAXHandlerStruct = {
1, 1,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
@ -703,7 +702,7 @@ xmlSAXHandlerPtr debugSAXHandler = &debugSAXHandlerStruct;
* SAX2 specific callbacks * SAX2 specific callbacks
*/ */
/** /**
* startElementDebug: * startElementNsDebug:
* @ctxt: An XML parser context * @ctxt: An XML parser context
* @name: The element name * @name: The element name
* *
@ -716,7 +715,9 @@ startElementNsDebug(void *ctx ATTRIBUTE_UNUSED,
const xmlChar *URI, const xmlChar *URI,
int nb_namespaces, int nb_namespaces,
const xmlChar **namespaces, const xmlChar **namespaces,
int nb_attributes) int nb_attributes,
int nb_defaulted,
const xmlChar **attributes)
{ {
int i; int i;
@ -743,7 +744,18 @@ startElementNsDebug(void *ctx ATTRIBUTE_UNUSED,
fprintf(stdout, "='%s'", namespaces[i]); fprintf(stdout, "='%s'", namespaces[i]);
} }
} }
fprintf(stdout, ", %d)\n", nb_attributes); fprintf(stdout, ", %d, %d", nb_attributes, nb_defaulted);
if (attributes != NULL) {
for (i = 0;i < nb_attributes;i += 5) {
if (attributes[i + 1] != NULL)
fprintf(stdout, ", %s:%s='", attributes[i + 1], attributes[i]);
else
fprintf(stdout, ", %s='", attributes[i]);
fprintf(stdout, "%.4s...', %d", attributes[i + 3],
attributes[i + 4] - attributes[i + 3]);
}
}
fprintf(stdout, ")\n");
} }
/** /**
@ -773,39 +785,6 @@ endElementNsDebug(void *ctx ATTRIBUTE_UNUSED,
fprintf(stdout, ", '%s')\n", (char *) URI); fprintf(stdout, ", '%s')\n", (char *) URI);
} }
/**
* attributeNsDebug:
* @ctxt: An XML parser context
* @name: The element name
*
* called when the end of an element has been detected.
*/
static void
attributeNsDebug(void *ctx ATTRIBUTE_UNUSED,
const xmlChar *localname,
const xmlChar *prefix,
const xmlChar *URI,
const xmlChar *value,
int valuelen)
{
callbacks++;
if (quiet)
return;
fprintf(stdout, "SAX.attributeNs(%s", (char *) localname);
if (prefix == NULL)
fprintf(stdout, ", NULL");
else
fprintf(stdout, ", %s", (char *) prefix);
if (URI == NULL)
fprintf(stdout, ", NULL");
else
fprintf(stdout, ", '%s'", (char *) URI);
if (valuelen > 13)
fprintf(stdout, ", %10s..., %d)\n", value, valuelen);
else
fprintf(stdout, ", %s, %d)\n", value, valuelen);
}
xmlSAXHandler debugSAX2HandlerStruct = { xmlSAXHandler debugSAX2HandlerStruct = {
internalSubsetDebug, internalSubsetDebug,
isStandaloneDebug, isStandaloneDebug,
@ -834,11 +813,10 @@ xmlSAXHandler debugSAX2HandlerStruct = {
getParameterEntityDebug, getParameterEntityDebug,
cdataBlockDebug, cdataBlockDebug,
externalSubsetDebug, externalSubsetDebug,
1, XML_SAX2_MAGIC,
NULL, NULL,
startElementNsDebug, startElementNsDebug,
endElementNsDebug, endElementNsDebug
attributeNsDebug
}; };
xmlSAXHandlerPtr debugSAX2Handler = &debugSAX2HandlerStruct; xmlSAXHandlerPtr debugSAX2Handler = &debugSAX2HandlerStruct;

202
tree.c
View File

@ -1078,15 +1078,18 @@ xmlStringLenGetNodeList(xmlDocPtr doc, const xmlChar *value, int len) {
xmlNodePtr ret = NULL, last = NULL; xmlNodePtr ret = NULL, last = NULL;
xmlNodePtr node; xmlNodePtr node;
xmlChar *val; xmlChar *val;
const xmlChar *cur = value; const xmlChar *cur = value, *end = cur + len;
const xmlChar *q; const xmlChar *q;
xmlEntityPtr ent; xmlEntityPtr ent;
if (value == NULL) return(NULL); if (value == NULL) return(NULL);
q = cur; q = cur;
while ((*cur != 0) && (cur - value < len)) { while ((cur < end) && (*cur != 0)) {
if (*cur == '&') { if (cur[0] == '&') {
int charval = 0;
xmlChar tmp;
/* /*
* Save the current text. * Save the current text.
*/ */
@ -1105,69 +1108,142 @@ xmlStringLenGetNodeList(xmlDocPtr doc, const xmlChar *value, int len) {
} }
} }
} }
/*
* Read the entity string
*/
cur++;
q = cur; q = cur;
while ((*cur != 0) && (cur - value < len) && (*cur != ';')) cur++; if ((cur + 2 < end) && (cur[1] == '#') && (cur[2] == 'x')) {
if ((*cur == 0) || (cur - value >= len)) { cur += 3;
#ifdef DEBUG_TREE if (cur < end)
xmlGenericError(xmlGenericErrorContext, tmp = *cur;
"xmlStringLenGetNodeList: unterminated entity %30s\n", q); else
#endif tmp = 0;
return(ret); while (tmp != ';') { /* Non input consuming loop */
} if ((tmp >= '0') && (tmp <= '9'))
if (cur != q) { charval = charval * 16 + (tmp - '0');
/* else if ((tmp >= 'a') && (tmp <= 'f'))
* Predefined entities don't generate nodes charval = charval * 16 + (tmp - 'a') + 10;
*/ else if ((tmp >= 'A') && (tmp <= 'F'))
val = xmlStrndup(q, cur - q); charval = charval * 16 + (tmp - 'A') + 10;
ent = xmlGetDocEntity(doc, val);
if ((ent != NULL) &&
(ent->etype == XML_INTERNAL_PREDEFINED_ENTITY)) {
if (last == NULL) {
node = xmlNewDocText(doc, ent->content);
last = ret = node;
} else
xmlNodeAddContent(last, ent->content);
} else {
/*
* Create a new REFERENCE_REF node
*/
node = xmlNewReference(doc, val);
if (node == NULL) {
if (val != NULL) xmlFree(val);
return(ret);
}
else if ((ent != NULL) && (ent->children == NULL)) {
xmlNodePtr tmp;
ent->children =
xmlStringGetNodeList(doc, (const xmlChar*)node->content);
tmp = ent->children;
while (tmp) {
tmp->parent = (xmlNodePtr)ent;
tmp = tmp->next;
}
}
if (last == NULL)
last = ret = node;
else { else {
last->next = node; xmlGenericError(xmlGenericErrorContext,
node->prev = last; "xmlStringGetNodeList: invalid hexadecimal charvalue\n");
last = node; charval = 0;
break;
}
cur++;
if (cur < end)
tmp = *cur;
else
tmp = 0;
}
if (tmp == ';')
cur++;
q = cur;
} else if ((cur + 1 < end) && (cur[1] == '#')) {
cur += 2;
if (cur < end)
tmp = *cur;
else
tmp = 0;
while (tmp != ';') { /* Non input consuming loops */
if ((tmp >= '0') && (tmp <= '9'))
charval = charval * 10 + (tmp - '0');
else {
xmlGenericError(xmlGenericErrorContext,
"xmlStringGetNodeList: invalid decimal charvalue\n");
charval = 0;
break;
}
cur++;
if (cur < end)
tmp = *cur;
else
tmp = 0;
}
if (tmp == ';')
cur++;
q = cur;
} else {
/*
* Read the entity string
*/
cur++;
q = cur;
while ((cur < end) && (*cur != 0) && (*cur != ';')) cur++;
if ((cur >= end) || (*cur == 0)) {
#ifdef DEBUG_TREE
xmlGenericError(xmlGenericErrorContext,
"xmlStringGetNodeList: unterminated entity %30s\n", q);
#endif
return(ret);
}
if (cur != q) {
/*
* Predefined entities don't generate nodes
*/
val = xmlStrndup(q, cur - q);
ent = xmlGetDocEntity(doc, val);
if ((ent != NULL) &&
(ent->etype == XML_INTERNAL_PREDEFINED_ENTITY)) {
if (last == NULL) {
node = xmlNewDocText(doc, ent->content);
last = ret = node;
} else if (last->type != XML_TEXT_NODE) {
node = xmlNewDocText(doc, ent->content);
last = xmlAddNextSibling(last, node);
} else
xmlNodeAddContent(last, ent->content);
} else {
/*
* Create a new REFERENCE_REF node
*/
node = xmlNewReference(doc, val);
if (node == NULL) {
if (val != NULL) xmlFree(val);
return(ret);
}
else if ((ent != NULL) && (ent->children == NULL)) {
xmlNodePtr temp;
ent->children = xmlStringGetNodeList(doc,
(const xmlChar*)node->content);
ent->owner = 1;
temp = ent->children;
while (temp) {
temp->parent = (xmlNodePtr)ent;
temp = temp->next;
}
}
if (last == NULL) {
last = ret = node;
} else {
last = xmlAddNextSibling(last, node);
}
}
xmlFree(val);
}
cur++;
q = cur;
}
if (charval != 0) {
xmlChar buf[10];
int l;
l = xmlCopyCharMultiByte(buf, charval);
buf[l] = 0;
node = xmlNewDocText(doc, buf);
if (node != NULL) {
if (last == NULL) {
last = ret = node;
} else {
last = xmlAddNextSibling(last, node);
} }
} }
xmlFree(val); charval = 0;
} }
cur++; } else
q = cur;
} else
cur++; cur++;
} }
if (cur != q) { if ((cur != q) || (ret == NULL)) {
/* /*
* Handle the last piece of text. * Handle the last piece of text.
*/ */
@ -1176,12 +1252,10 @@ xmlStringLenGetNodeList(xmlDocPtr doc, const xmlChar *value, int len) {
} else { } else {
node = xmlNewDocTextLen(doc, q, cur - q); node = xmlNewDocTextLen(doc, q, cur - q);
if (node == NULL) return(ret); if (node == NULL) return(ret);
if (last == NULL) if (last == NULL) {
last = ret = node; last = ret = node;
else { } else {
last->next = node; last = xmlAddNextSibling(last, node);
node->prev = last;
last = node;
} }
} }
} }

View File

@ -3808,8 +3808,8 @@ xmlValidateElementDecl(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
int int
xmlValidateOneAttribute(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlValidateOneAttribute(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
xmlNodePtr elem, xmlAttrPtr attr, const xmlChar *value) { xmlNodePtr elem, xmlAttrPtr attr, const xmlChar *value)
/* xmlElementPtr elemDecl; */ {
xmlAttributePtr attrDecl = NULL; xmlAttributePtr attrDecl = NULL;
int val; int val;
int ret = 1; int ret = 1;

View File

@ -1753,7 +1753,7 @@ xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
if (xmlInputCallbackTable[i].opencallback == xmlGzfileOpen) { if (xmlInputCallbackTable[i].opencallback == xmlGzfileOpen) {
if (((z_stream *)context)->avail_in > 4) { if (((z_stream *)context)->avail_in > 4) {
char *cptr, buff4[4]; char *cptr, buff4[4];
cptr = ((z_stream *)context)->next_in; cptr = (char *) ((z_stream *)context)->next_in;
if (gzread(context, buff4, 4) == 4) { if (gzread(context, buff4, 4) == 4) {
if (strncmp(buff4, cptr, 4) == 0) if (strncmp(buff4, cptr, 4) == 0)
ret->compressed = 0; ret->compressed = 0;

View File

@ -13,7 +13,7 @@
#include <assert.h> #include <assert.h>
#if defined (_WIN32) && !defined(__CYGWIN__) #if defined (_WIN32) && !defined(__CYGWIN__)
#ifdef _MSC_VER #if defined (_MSC_VER) || defined(__BORLANDC__)
#include <winsock2.h> #include <winsock2.h>
#pragma comment(lib, "ws2_32.lib") #pragma comment(lib, "ws2_32.lib")
#define gettimeofday(p1,p2) #define gettimeofday(p1,p2)
@ -148,6 +148,7 @@ static int nocatalogs = 0;
#endif #endif
static int stream = 0; static int stream = 0;
static int chkregister = 0; static int chkregister = 0;
static int sax1 = 0;
static const char *output = NULL; static const char *output = NULL;
/* /*
@ -1550,6 +1551,10 @@ main(int argc, char **argv) {
(!strcmp(argv[i], "--stream"))) { (!strcmp(argv[i], "--stream"))) {
stream++; stream++;
} }
else if ((!strcmp(argv[i], "-sax1")) ||
(!strcmp(argv[i], "--sax1"))) {
sax1++;
}
else if ((!strcmp(argv[i], "-chkregister")) || else if ((!strcmp(argv[i], "-chkregister")) ||
(!strcmp(argv[i], "--chkregister"))) { (!strcmp(argv[i], "--chkregister"))) {
chkregister++; chkregister++;
@ -1590,6 +1595,11 @@ main(int argc, char **argv) {
} }
#endif #endif
if (sax1)
xmlSAXDefaultVersion(1);
else
xmlSAXDefaultVersion(2);
if (chkregister) { if (chkregister) {
xmlRegisterNodeDefault(registerNode); xmlRegisterNodeDefault(registerNode);
xmlDeregisterNodeDefault(deregisterNode); xmlDeregisterNodeDefault(deregisterNode);

View File

@ -103,6 +103,8 @@ struct _xmlTextReader {
xmlParserInputBufferPtr input; /* the input */ xmlParserInputBufferPtr input; /* the input */
startElementSAXFunc startElement;/* initial SAX callbacks */ startElementSAXFunc startElement;/* initial SAX callbacks */
endElementSAXFunc endElement; /* idem */ endElementSAXFunc endElement; /* idem */
startElementNsSAX2Func startElementNs;/* idem */
endElementNsSAX2Func endElementNs; /* idem */
charactersSAXFunc characters; charactersSAXFunc characters;
cdataBlockSAXFunc cdataBlock; cdataBlockSAXFunc cdataBlock;
unsigned int base; /* base of the segment in the input */ unsigned int base; /* base of the segment in the input */
@ -271,6 +273,78 @@ xmlTextReaderEndElement(void *ctx, const xmlChar *fullname) {
} }
} }
/**
* xmlTextReaderStartElementNs:
* @ctx: the user data (XML parser context)
* @localname: the local name of the element
* @prefix: the element namespace prefix if available
* @URI: the element namespace name if available
* @nb_namespaces: number of namespace definitions on that node
* @namespaces: pointer to the array of prefix/URI pairs namespace definitions
* @nb_attributes: the number of attributes on that node
* nb_defaulted: the number of defaulted attributes.
* @attributes: pointer to the array of (localname/prefix/URI/value/end)
* attribute values.
*
* called when an opening tag has been processed.
*/
static void
xmlTextReaderStartElementNs(void *ctx,
const xmlChar *localname,
const xmlChar *prefix,
const xmlChar *URI,
int nb_namespaces,
const xmlChar **namespaces,
int nb_attributes,
int nb_defaulted,
const xmlChar **attributes)
{
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
xmlTextReaderPtr reader = ctxt->_private;
#ifdef DEBUG_CALLBACKS
printf("xmlTextReaderStartElementNs(%s)\n", fullname);
#endif
if ((reader != NULL) && (reader->startElementNs != NULL)) {
reader->startElementNs(ctx, localname, prefix, URI, nb_namespaces,
namespaces, nb_attributes, nb_defaulted,
attributes);
if ((ctxt->node != NULL) && (ctxt->input != NULL) &&
(ctxt->input->cur != NULL) && (ctxt->input->cur[0] == '/') &&
(ctxt->input->cur[1] == '>'))
ctxt->node->_private = (void *) xmlTextReaderIsEmpty;
}
if (reader != NULL)
reader->state = XML_TEXTREADER_ELEMENT;
}
/**
* xmlTextReaderEndElementNs:
* @ctx: the user data (XML parser context)
* @localname: the local name of the element
* @prefix: the element namespace prefix if available
* @URI: the element namespace name if available
*
* called when an ending tag has been processed.
*/
static void
xmlTextReaderEndElementNs(void *ctx,
const xmlChar * localname,
const xmlChar * prefix,
const xmlChar * URI)
{
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
xmlTextReaderPtr reader = ctxt->_private;
#ifdef DEBUG_CALLBACKS
printf("xmlTextReaderEndElementNs(%s)\n", fullname);
#endif
if ((reader != NULL) && (reader->endElementNs != NULL)) {
reader->endElementNs(ctx, localname, prefix, URI);
}
}
/** /**
* xmlTextReaderCharacters: * xmlTextReaderCharacters:
* @ctx: the user data (XML parser context) * @ctx: the user data (XML parser context)
@ -1123,6 +1197,15 @@ xmlNewTextReader(xmlParserInputBufferPtr input, const char *URI) {
ret->sax->startElement = xmlTextReaderStartElement; ret->sax->startElement = xmlTextReaderStartElement;
ret->endElement = ret->sax->endElement; ret->endElement = ret->sax->endElement;
ret->sax->endElement = xmlTextReaderEndElement; ret->sax->endElement = xmlTextReaderEndElement;
if (ret->sax->initialized == XML_SAX2_MAGIC) {
ret->startElementNs = ret->sax->startElementNs;
ret->sax->startElementNs = xmlTextReaderStartElementNs;
ret->endElementNs = ret->sax->endElementNs;
ret->sax->endElementNs = xmlTextReaderEndElementNs;
} else {
ret->startElementNs = NULL;
ret->endElementNs = NULL;
}
ret->characters = ret->sax->characters; ret->characters = ret->sax->characters;
ret->sax->characters = xmlTextReaderCharacters; ret->sax->characters = xmlTextReaderCharacters;
ret->sax->ignorableWhitespace = xmlTextReaderCharacters; ret->sax->ignorableWhitespace = xmlTextReaderCharacters;