]> granicus.if.org Git - postgresql/commit
Rewrite libxml error handling to be more robust.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 20 Jul 2011 17:03:12 +0000 (13:03 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 20 Jul 2011 17:03:49 +0000 (13:03 -0400)
commitcacd42d62cb2ddf32135b151f627780a5509780f
tree5b46e972260f1c12c777cb4dd071c4b29ee84c0d
parentd79a601fd9ec59772395d16b33fe79296021a350
Rewrite libxml error handling to be more robust.

libxml reports some errors (like invalid xmlns attributes) via the error
handler hook, but still returns a success indicator to the library caller.
This causes us to miss some errors that are important to report.  Since the
"generic" error handler hook doesn't know whether the message it's getting
is for an error, warning, or notice, stop using that and instead start
using the "structured" error handler hook, which gets enough information
to be useful.

While at it, arrange to save and restore the error handler hook setting in
each libxml-using function, rather than assuming we can set and forget the
hook.  This should improve the odds of working nicely with third-party
libraries that also use libxml.

In passing, volatile-ize some local variables that get modified within
PG_TRY blocks.  I noticed this while testing with an older gcc version
than I'd previously tried to compile xml.c with.

Florian Pflug and Tom Lane, with extensive review/testing by Noah Misch
configure
configure.in
contrib/xml2/xpath.c
contrib/xml2/xslt_proc.c
src/backend/utils/adt/xml.c
src/include/pg_config.h.in
src/include/utils/xml.h
src/test/regress/expected/xml.out
src/test/regress/expected/xml_1.out
src/test/regress/sql/xml.sql