diff --git a/ChangeLog b/ChangeLog index 187c801c..e55f5417 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Apr 24 19:11:12 CEST 2003 Daniel Veillard + + * Makefile.am doc/apibuild.py: make sure the OOM code don't + get in the way of the builds + * doc/libxml2-api.xml python/libxml2class.txt: automatic update + Thu Apr 24 18:01:46 CEST 2003 Daniel Veillard * Makefile.am testOOM.c testOOMlib.[ch] : integrated the Out Of diff --git a/Makefile.am b/Makefile.am index 7242f992..2f749517 100644 --- a/Makefile.am +++ b/Makefile.am @@ -116,10 +116,10 @@ testReader_LDFLAGS = testReader_DEPENDENCIES = $(DEPS) testReader_LDADD= $(LDADDS) -testOOM_SOURCES=testOOM.c testOOMlib.h testOOMlib.c -testOOM_LDFLAGS = -testOOM_DEPENDENCIES = $(DEPS) -testOOM_LDADD= $(LDADDS) +#testOOM_SOURCES=testOOM.c testOOMlib.h testOOMlib.c +#testOOM_LDFLAGS = +#testOOM_DEPENDENCIES = $(DEPS) +#testOOM_LDADD= $(LDADDS) check-local: tests diff --git a/doc/apibuild.py b/doc/apibuild.py index 241ceaeb..f0308bc4 100755 --- a/doc/apibuild.py +++ b/doc/apibuild.py @@ -11,6 +11,31 @@ import os, sys import string import glob +# +# C parser analysis code +# +ignored_files = { + "trio": "too many non standard macros", + "trio.c": "too many non standard macros", + "trionan.c": "too many non standard macros", + "triostr.c": "too many non standard macros", + "acconfig.h": "generated portability layer", + "config.h": "generated portability layer", + "libxml.h": "internal only", + "testOOM.c": "out of memory tester" + "testOOMlib.h": "out of memory tester" + "testOOMlib.c": "out of memory tester" +} + +ignored_words = { + "WINAPI": (0, "Windows keyword"), + "LIBXML_DLL_IMPORT": (0, "Special macro to flag external keywords"), + "__declspec": (3, "Windows keyword"), + "ATTRIBUTE_UNUSED": (0, "macro keyword"), + "LIBEXSLT_PUBLIC": (0, "macro keyword"), + "X_IN_Y": (5, "macro function builder"), +} + def escape(raw): raw = string.replace(raw, '&', '&') raw = string.replace(raw, '<', '<') @@ -208,28 +233,6 @@ class index: self.analyze_dict("typedefs", self.typedefs) self.analyze_dict("macros", self.macros) -# -# C parser analysis code -# -ignored_files = { - "trio": "too many non standard macros", - "trio.c": "too many non standard macros", - "trionan.c": "too many non standard macros", - "triostr.c": "too many non standard macros", - "acconfig.h": "generated portability layer", - "config.h": "generated portability layer", - "libxml.h": "internal only", -} - -ignored_words = { - "WINAPI": (0, "Windows keyword"), - "LIBXML_DLL_IMPORT": (0, "Special macro to flag external keywords"), - "__declspec": (3, "Windows keyword"), - "ATTRIBUTE_UNUSED": (0, "macro keyword"), - "LIBEXSLT_PUBLIC": (0, "macro keyword"), - "X_IN_Y": (5, "macro function builder"), -} - class CLexer: """A lexer for the C language, tokenize the input by reading and analyzing it line by line""" diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml index 57823a37..f9ea8f09 100644 --- a/doc/libxml2-api.xml +++ b/doc/libxml2-api.xml @@ -730,8 +730,11 @@ + + + @@ -834,6 +837,27 @@ + + + + + + + + + + + + + + + + + + + + + @@ -969,142 +993,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + @@ -1284,6 +1181,8 @@ + + @@ -1305,26 +1204,142 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2140,6 +2155,8 @@ Skips the end of line chars. + + defined if the trio support should not be configured in @@ -2864,6 +2881,7 @@ actually an xmlCharEncoding'/> + @@ -2997,6 +3015,7 @@ actually an xmlCharEncoding'/> + @@ -3253,15 +3272,16 @@ actually an xmlCharEncoding'/> - + + - + @@ -3269,11 +3289,16 @@ actually an xmlCharEncoding'/> - + + + + + + Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out. @@ -4122,6 +4147,37 @@ actually an xmlCharEncoding'/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + What to do when an unparsed entity declaration is parsed @@ -5448,6 +5504,24 @@ actually an xmlCharEncoding'/> + + Provides the memory access functions set currently in use The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators + + + + + + + + + Override the default memory access functions with a new set This has to be called before any other libxml routines ! The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators Should this be blocked if there was already some allocations done ? + + + + + + + Signature of the function to use when there is an error and no parsing or validity context available . @@ -5903,7 +5977,7 @@ actually an xmlCharEncoding'/> Initialize a parser context - + @@ -8320,7 +8394,7 @@ actually an xmlCharEncoding'/> Concat the given string at the end of the existing node content - + diff --git a/python/libxml2class.txt b/python/libxml2class.txt index 1e6808ac..ae92f0db 100644 --- a/python/libxml2class.txt +++ b/python/libxml2class.txt @@ -132,6 +132,10 @@ relaxNGCleanupTypes() relaxNGNewMemParserCtxt() relaxNGNewParserCtxt() +# functions from module testOOMlib +test_get_malloc_blocks_outstanding() +test_strdup() + # functions from module tree buildQName() compressMode()