diff options
Diffstat (limited to 'sax/README.md')
-rw-r--r-- | sax/README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sax/README.md b/sax/README.md new file mode 100644 index 000000000..30ae23197 --- /dev/null +++ b/sax/README.md @@ -0,0 +1,15 @@ +# UNO Services for SAX + +UNO services for SAX parsing and C++ functions for XMLSchema-2 data types. + +* `source/expwrap`: + string-based SAX parser UNO service wrapping expat +* `source/fastparser`: + multi-threaded token-based SAX parser UNO service wrapping libxml2 +* `source/tools`: + + C++ wrapper for fast SAX parser + + C++ XMLSchema-2 data type conversion helpers + +Multi-threading in FastParser can be disabled for debugging purposes with: + + SAX_DISABLE_THREADS=1 SAL_LOG="+INFO.sax.fastparser+WARN" |