nokolexbor 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/nokolexbor/config.h +186 -0
- data/ext/nokolexbor/extconf.rb +131 -0
- data/ext/nokolexbor/libxml/HTMLparser.h +320 -0
- data/ext/nokolexbor/libxml/SAX2.h +173 -0
- data/ext/nokolexbor/libxml/chvalid.h +230 -0
- data/ext/nokolexbor/libxml/debugXML.h +217 -0
- data/ext/nokolexbor/libxml/dict.h +81 -0
- data/ext/nokolexbor/libxml/encoding.h +232 -0
- data/ext/nokolexbor/libxml/entities.h +153 -0
- data/ext/nokolexbor/libxml/globals.h +529 -0
- data/ext/nokolexbor/libxml/hash.h +236 -0
- data/ext/nokolexbor/libxml/list.h +137 -0
- data/ext/nokolexbor/libxml/parser.h +1264 -0
- data/ext/nokolexbor/libxml/parserInternals.h +641 -0
- data/ext/nokolexbor/libxml/pattern.h +100 -0
- data/ext/nokolexbor/libxml/threads.h +94 -0
- data/ext/nokolexbor/libxml/tree.h +1315 -0
- data/ext/nokolexbor/libxml/uri.h +94 -0
- data/ext/nokolexbor/libxml/valid.h +448 -0
- data/ext/nokolexbor/libxml/xmlIO.h +369 -0
- data/ext/nokolexbor/libxml/xmlautomata.h +146 -0
- data/ext/nokolexbor/libxml/xmlerror.h +919 -0
- data/ext/nokolexbor/libxml/xmlexports.h +79 -0
- data/ext/nokolexbor/libxml/xmlmemory.h +226 -0
- data/ext/nokolexbor/libxml/xmlregexp.h +222 -0
- data/ext/nokolexbor/libxml/xmlstring.h +140 -0
- data/ext/nokolexbor/libxml/xmlversion.h +526 -0
- data/ext/nokolexbor/libxml/xpath.h +575 -0
- data/ext/nokolexbor/libxml/xpathInternals.h +632 -0
- data/ext/nokolexbor/libxml/xpointer.h +137 -0
- data/ext/nokolexbor/libxml.h +76 -0
- data/ext/nokolexbor/memory.c +39 -0
- data/ext/nokolexbor/nl_document.c +51 -0
- data/ext/nokolexbor/nl_node.c +790 -0
- data/ext/nokolexbor/nl_node_set.c +368 -0
- data/ext/nokolexbor/nl_xpath_context.c +200 -0
- data/ext/nokolexbor/nokolexbor.c +63 -0
- data/ext/nokolexbor/nokolexbor.h +37 -0
- data/ext/nokolexbor/private/buf.h +70 -0
- data/ext/nokolexbor/private/dict.h +11 -0
- data/ext/nokolexbor/private/enc.h +17 -0
- data/ext/nokolexbor/private/error.h +21 -0
- data/ext/nokolexbor/private/globals.h +9 -0
- data/ext/nokolexbor/private/memory.h +9 -0
- data/ext/nokolexbor/private/parser.h +27 -0
- data/ext/nokolexbor/private/string.h +9 -0
- data/ext/nokolexbor/private/threads.h +50 -0
- data/ext/nokolexbor/private/tree.h +18 -0
- data/ext/nokolexbor/private/xpath.h +7 -0
- data/ext/nokolexbor/timsort.h +601 -0
- data/ext/nokolexbor/xml_SAX2.c +80 -0
- data/ext/nokolexbor/xml_buf.c +363 -0
- data/ext/nokolexbor/xml_chvalid.c +334 -0
- data/ext/nokolexbor/xml_dict.c +1264 -0
- data/ext/nokolexbor/xml_encoding.c +124 -0
- data/ext/nokolexbor/xml_error.c +134 -0
- data/ext/nokolexbor/xml_globals.c +1085 -0
- data/ext/nokolexbor/xml_hash.c +1141 -0
- data/ext/nokolexbor/xml_memory.c +203 -0
- data/ext/nokolexbor/xml_parser.c +127 -0
- data/ext/nokolexbor/xml_parserInternals.c +338 -0
- data/ext/nokolexbor/xml_pattern.c +2375 -0
- data/ext/nokolexbor/xml_string.c +1051 -0
- data/ext/nokolexbor/xml_threads.c +881 -0
- data/ext/nokolexbor/xml_tree.c +148 -0
- data/ext/nokolexbor/xml_xpath.c +14743 -0
- data/lib/nokolexbor/attribute.rb +18 -0
- data/lib/nokolexbor/document.rb +6 -0
- data/lib/nokolexbor/node.rb +264 -0
- data/lib/nokolexbor/node_set.rb +124 -0
- data/lib/nokolexbor/version.rb +5 -0
- data/lib/nokolexbor/xpath_context.rb +14 -0
- data/lib/nokolexbor.rb +17 -0
- data/patches/0001-lexbor-support-text-pseudo-element.patch +137 -0
- data/patches/0002-lexbor-match-id-class-case-sensitive.patch +22 -0
- data/patches/0003-lexbor-attach-template-content-to-self.patch +13 -0
- data/vendor/lexbor/CMakeLists.txt +331 -0
- data/vendor/lexbor/config.cmake +890 -0
- data/vendor/lexbor/feature.cmake +134 -0
- data/vendor/lexbor/source/lexbor/core/array.c +208 -0
- data/vendor/lexbor/source/lexbor/core/array.h +100 -0
- data/vendor/lexbor/source/lexbor/core/array_obj.c +216 -0
- data/vendor/lexbor/source/lexbor/core/array_obj.h +134 -0
- data/vendor/lexbor/source/lexbor/core/avl.c +442 -0
- data/vendor/lexbor/source/lexbor/core/avl.h +82 -0
- data/vendor/lexbor/source/lexbor/core/base.h +86 -0
- data/vendor/lexbor/source/lexbor/core/bst.c +468 -0
- data/vendor/lexbor/source/lexbor/core/bst.h +108 -0
- data/vendor/lexbor/source/lexbor/core/bst_map.c +238 -0
- data/vendor/lexbor/source/lexbor/core/bst_map.h +87 -0
- data/vendor/lexbor/source/lexbor/core/config.cmake +12 -0
- data/vendor/lexbor/source/lexbor/core/conv.c +203 -0
- data/vendor/lexbor/source/lexbor/core/conv.h +53 -0
- data/vendor/lexbor/source/lexbor/core/core.h +35 -0
- data/vendor/lexbor/source/lexbor/core/def.h +57 -0
- data/vendor/lexbor/source/lexbor/core/diyfp.c +153 -0
- data/vendor/lexbor/source/lexbor/core/diyfp.h +258 -0
- data/vendor/lexbor/source/lexbor/core/dobject.c +187 -0
- data/vendor/lexbor/source/lexbor/core/dobject.h +92 -0
- data/vendor/lexbor/source/lexbor/core/dtoa.c +404 -0
- data/vendor/lexbor/source/lexbor/core/dtoa.h +28 -0
- data/vendor/lexbor/source/lexbor/core/fs.h +60 -0
- data/vendor/lexbor/source/lexbor/core/hash.c +476 -0
- data/vendor/lexbor/source/lexbor/core/hash.h +218 -0
- data/vendor/lexbor/source/lexbor/core/in.c +267 -0
- data/vendor/lexbor/source/lexbor/core/in.h +172 -0
- data/vendor/lexbor/source/lexbor/core/lexbor.h +35 -0
- data/vendor/lexbor/source/lexbor/core/mem.c +228 -0
- data/vendor/lexbor/source/lexbor/core/mem.h +141 -0
- data/vendor/lexbor/source/lexbor/core/mraw.c +428 -0
- data/vendor/lexbor/source/lexbor/core/mraw.h +114 -0
- data/vendor/lexbor/source/lexbor/core/perf.h +45 -0
- data/vendor/lexbor/source/lexbor/core/plog.c +73 -0
- data/vendor/lexbor/source/lexbor/core/plog.h +102 -0
- data/vendor/lexbor/source/lexbor/core/print.c +168 -0
- data/vendor/lexbor/source/lexbor/core/print.h +39 -0
- data/vendor/lexbor/source/lexbor/core/sbst.h +59 -0
- data/vendor/lexbor/source/lexbor/core/serialize.c +27 -0
- data/vendor/lexbor/source/lexbor/core/serialize.h +32 -0
- data/vendor/lexbor/source/lexbor/core/shs.c +118 -0
- data/vendor/lexbor/source/lexbor/core/shs.h +82 -0
- data/vendor/lexbor/source/lexbor/core/str.c +617 -0
- data/vendor/lexbor/source/lexbor/core/str.h +247 -0
- data/vendor/lexbor/source/lexbor/core/str_res.h +369 -0
- data/vendor/lexbor/source/lexbor/core/strtod.c +326 -0
- data/vendor/lexbor/source/lexbor/core/strtod.h +28 -0
- data/vendor/lexbor/source/lexbor/core/types.h +39 -0
- data/vendor/lexbor/source/lexbor/core/utils.c +43 -0
- data/vendor/lexbor/source/lexbor/core/utils.h +36 -0
- data/vendor/lexbor/source/lexbor/css/base.h +44 -0
- data/vendor/lexbor/source/lexbor/css/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/css/css.h +25 -0
- data/vendor/lexbor/source/lexbor/css/log.c +336 -0
- data/vendor/lexbor/source/lexbor/css/log.h +103 -0
- data/vendor/lexbor/source/lexbor/css/node.h +29 -0
- data/vendor/lexbor/source/lexbor/css/parser.c +473 -0
- data/vendor/lexbor/source/lexbor/css/parser.h +368 -0
- data/vendor/lexbor/source/lexbor/css/selectors/base.h +48 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo.c +91 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo.h +66 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_const.h +109 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_res.h +302 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_state.c +279 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_state.h +85 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selector.c +927 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selector.h +200 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selectors.c +340 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selectors.h +137 -0
- data/vendor/lexbor/source/lexbor/css/selectors/state.c +1718 -0
- data/vendor/lexbor/source/lexbor/css/selectors/state.h +79 -0
- data/vendor/lexbor/source/lexbor/css/stylesheet.h +37 -0
- data/vendor/lexbor/source/lexbor/css/syntax/anb.c +443 -0
- data/vendor/lexbor/source/lexbor/css/syntax/anb.h +45 -0
- data/vendor/lexbor/source/lexbor/css/syntax/base.h +33 -0
- data/vendor/lexbor/source/lexbor/css/syntax/parser.c +9 -0
- data/vendor/lexbor/source/lexbor/css/syntax/parser.h +25 -0
- data/vendor/lexbor/source/lexbor/css/syntax/res.h +48 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state.c +2603 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state.h +140 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state_res.h +273 -0
- data/vendor/lexbor/source/lexbor/css/syntax/syntax.c +67 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token.c +618 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token.h +298 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token_res.h +68 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer/error.c +30 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer/error.h +58 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer.c +278 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer.h +121 -0
- data/vendor/lexbor/source/lexbor/dom/base.h +32 -0
- data/vendor/lexbor/source/lexbor/dom/collection.c +97 -0
- data/vendor/lexbor/source/lexbor/dom/collection.h +112 -0
- data/vendor/lexbor/source/lexbor/dom/config.cmake +3 -0
- data/vendor/lexbor/source/lexbor/dom/dom.h +29 -0
- data/vendor/lexbor/source/lexbor/dom/exception.c +18 -0
- data/vendor/lexbor/source/lexbor/dom/exception.h +73 -0
- data/vendor/lexbor/source/lexbor/dom/interface.c +110 -0
- data/vendor/lexbor/source/lexbor/dom/interface.h +88 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr.c +445 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr.h +152 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr_const.h +62 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr_res.h +143 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/cdata_section.c +55 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/cdata_section.h +38 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/character_data.c +110 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/character_data.h +51 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/comment.c +64 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/comment.h +42 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document.c +536 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document.h +243 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_fragment.c +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_fragment.h +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_type.c +125 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_type.h +108 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/element.c +1411 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/element.h +319 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/event_target.c +32 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/event_target.h +34 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/node.c +661 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/node.h +192 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/processing_instruction.c +87 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/processing_instruction.h +66 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/shadow_root.c +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/shadow_root.h +44 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/text.c +63 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/text.h +42 -0
- data/vendor/lexbor/source/lexbor/encoding/base.h +218 -0
- data/vendor/lexbor/source/lexbor/encoding/big5.c +42839 -0
- data/vendor/lexbor/source/lexbor/encoding/config.cmake +12 -0
- data/vendor/lexbor/source/lexbor/encoding/const.h +65 -0
- data/vendor/lexbor/source/lexbor/encoding/decode.c +3193 -0
- data/vendor/lexbor/source/lexbor/encoding/decode.h +370 -0
- data/vendor/lexbor/source/lexbor/encoding/encode.c +1931 -0
- data/vendor/lexbor/source/lexbor/encoding/encode.h +377 -0
- data/vendor/lexbor/source/lexbor/encoding/encoding.c +252 -0
- data/vendor/lexbor/source/lexbor/encoding/encoding.h +475 -0
- data/vendor/lexbor/source/lexbor/encoding/euc_kr.c +53883 -0
- data/vendor/lexbor/source/lexbor/encoding/gb18030.c +47905 -0
- data/vendor/lexbor/source/lexbor/encoding/iso_2022_jp_katakana.c +159 -0
- data/vendor/lexbor/source/lexbor/encoding/jis0208.c +22477 -0
- data/vendor/lexbor/source/lexbor/encoding/jis0212.c +15787 -0
- data/vendor/lexbor/source/lexbor/encoding/multi.h +53 -0
- data/vendor/lexbor/source/lexbor/encoding/range.c +71 -0
- data/vendor/lexbor/source/lexbor/encoding/range.h +34 -0
- data/vendor/lexbor/source/lexbor/encoding/res.c +222 -0
- data/vendor/lexbor/source/lexbor/encoding/res.h +34 -0
- data/vendor/lexbor/source/lexbor/encoding/single.c +13748 -0
- data/vendor/lexbor/source/lexbor/encoding/single.h +116 -0
- data/vendor/lexbor/source/lexbor/html/base.h +44 -0
- data/vendor/lexbor/source/lexbor/html/config.cmake +3 -0
- data/vendor/lexbor/source/lexbor/html/encoding.c +574 -0
- data/vendor/lexbor/source/lexbor/html/encoding.h +106 -0
- data/vendor/lexbor/source/lexbor/html/html.h +107 -0
- data/vendor/lexbor/source/lexbor/html/interface.c +165 -0
- data/vendor/lexbor/source/lexbor/html/interface.h +186 -0
- data/vendor/lexbor/source/lexbor/html/interface_res.h +4449 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/anchor_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/anchor_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/area_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/area_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/audio_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/audio_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/base_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/base_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/body_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/body_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/br_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/br_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/button_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/button_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/canvas_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/canvas_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/d_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/d_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/details_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/details_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/dialog_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/dialog_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/directory_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/directory_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/div_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/div_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/document.c +444 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/document.h +256 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/element.c +64 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/element.h +54 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/embed_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/embed_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/field_set_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/field_set_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/font_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/font_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/form_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/form_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_set_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_set_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/head_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/head_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/heading_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/heading_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/hr_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/hr_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/html_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/html_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/iframe_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/iframe_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/image_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/image_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/input_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/input_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/label_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/label_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/legend_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/legend_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/li_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/li_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/link_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/link_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/map_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/map_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/marquee_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/marquee_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/media_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/media_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/menu_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/menu_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meta_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meta_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meter_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meter_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/mod_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/mod_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/o_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/o_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/object_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/object_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/opt_group_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/opt_group_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/option_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/option_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/output_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/output_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/paragraph_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/paragraph_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/param_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/param_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/picture_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/picture_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/pre_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/pre_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/progress_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/progress_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/quote_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/quote_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/script_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/script_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/select_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/select_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/slot_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/slot_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/source_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/source_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/span_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/span_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/style_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/style_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_caption_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_caption_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_cell_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_cell_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_col_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_col_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_row_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_row_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_section_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_section_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/template_element.c +46 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/template_element.h +38 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/text_area_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/text_area_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/time_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/time_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/title_element.c +133 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/title_element.h +42 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/track_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/track_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/u_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/u_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/unknown_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/unknown_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/video_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/video_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/window.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/window.h +34 -0
- data/vendor/lexbor/source/lexbor/html/node.c +14 -0
- data/vendor/lexbor/source/lexbor/html/node.h +67 -0
- data/vendor/lexbor/source/lexbor/html/parser.c +469 -0
- data/vendor/lexbor/source/lexbor/html/parser.h +170 -0
- data/vendor/lexbor/source/lexbor/html/serialize.c +1510 -0
- data/vendor/lexbor/source/lexbor/html/serialize.h +93 -0
- data/vendor/lexbor/source/lexbor/html/tag.h +103 -0
- data/vendor/lexbor/source/lexbor/html/tag_res.h +2262 -0
- data/vendor/lexbor/source/lexbor/html/token.c +386 -0
- data/vendor/lexbor/source/lexbor/html/token.h +130 -0
- data/vendor/lexbor/source/lexbor/html/token_attr.c +44 -0
- data/vendor/lexbor/source/lexbor/html/token_attr.h +67 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/error.c +28 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/error.h +141 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/res.h +4956 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state.c +2171 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state.h +225 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_comment.c +489 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_comment.h +27 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_doctype.c +1654 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_doctype.h +27 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rawtext.c +303 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rawtext.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rcdata.c +311 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rcdata.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_script.c +1209 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_script.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer.c +499 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer.h +343 -0
- data/vendor/lexbor/source/lexbor/html/tree/active_formatting.c +241 -0
- data/vendor/lexbor/source/lexbor/html/tree/active_formatting.h +117 -0
- data/vendor/lexbor/source/lexbor/html/tree/error.c +26 -0
- data/vendor/lexbor/source/lexbor/html/tree/error.h +114 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_after_body.c +62 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_after_frameset.c +63 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_body.c +82 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_frameset.c +88 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_head.c +222 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/before_head.c +144 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/before_html.c +166 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/foreign_content.c +358 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_body.c +1974 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_caption.c +158 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_cell.c +187 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_column_group.c +194 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_frameset.c +149 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_head.c +374 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_head_noscript.c +121 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_row.c +211 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_select.c +341 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_select_in_table.c +115 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table.c +451 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table_body.c +208 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table_text.c +127 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_template.c +189 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/initial.c +411 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/text.c +61 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode.h +135 -0
- data/vendor/lexbor/source/lexbor/html/tree/open_elements.c +251 -0
- data/vendor/lexbor/source/lexbor/html/tree/open_elements.h +105 -0
- data/vendor/lexbor/source/lexbor/html/tree/template_insertion.c +10 -0
- data/vendor/lexbor/source/lexbor/html/tree/template_insertion.h +100 -0
- data/vendor/lexbor/source/lexbor/html/tree.c +1726 -0
- data/vendor/lexbor/source/lexbor/html/tree.h +431 -0
- data/vendor/lexbor/source/lexbor/html/tree_res.h +111 -0
- data/vendor/lexbor/source/lexbor/ns/base.h +32 -0
- data/vendor/lexbor/source/lexbor/ns/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/ns/const.h +37 -0
- data/vendor/lexbor/source/lexbor/ns/ns.c +154 -0
- data/vendor/lexbor/source/lexbor/ns/ns.h +66 -0
- data/vendor/lexbor/source/lexbor/ns/res.h +97 -0
- data/vendor/lexbor/source/lexbor/ports/posix/config.cmake +11 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/fs.c +236 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/memory.c +33 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/perf.c +158 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/config.cmake +18 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/fs.c +239 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/memory.c +33 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/perf.c +81 -0
- data/vendor/lexbor/source/lexbor/selectors/base.h +30 -0
- data/vendor/lexbor/source/lexbor/selectors/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/selectors/selectors.c +1591 -0
- data/vendor/lexbor/source/lexbor/selectors/selectors.h +71 -0
- data/vendor/lexbor/source/lexbor/tag/base.h +32 -0
- data/vendor/lexbor/source/lexbor/tag/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/tag/const.h +225 -0
- data/vendor/lexbor/source/lexbor/tag/res.h +562 -0
- data/vendor/lexbor/source/lexbor/tag/tag.c +144 -0
- data/vendor/lexbor/source/lexbor/tag/tag.h +123 -0
- data/vendor/lexbor/source/lexbor/utils/base.h +32 -0
- data/vendor/lexbor/source/lexbor/utils/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/utils/http.c +534 -0
- data/vendor/lexbor/source/lexbor/utils/http.h +90 -0
- data/vendor/lexbor/source/lexbor/utils/utils.h +15 -0
- data/vendor/lexbor/source/lexbor/utils/warc.c +817 -0
- data/vendor/lexbor/source/lexbor/utils/warc.h +126 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/pseudo.py +231 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/const.h +21 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/res.h +26 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/definitions.py +49 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/token_res.py +54 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/tokenizer_code_map.py +36 -0
- data/vendor/lexbor/version +1 -0
- metadata +542 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: macros for marking symbols as exportable/importable.
|
|
3
|
+
* Description: macros for marking symbols as exportable/importable.
|
|
4
|
+
*
|
|
5
|
+
* Copy: See Copyright for the status of this software.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
#ifndef __XML_EXPORTS_H__
|
|
9
|
+
#define __XML_EXPORTS_H__
|
|
10
|
+
|
|
11
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
12
|
+
/** DOC_DISABLE */
|
|
13
|
+
|
|
14
|
+
#ifdef LIBXML_STATIC
|
|
15
|
+
#define XMLPUBLIC
|
|
16
|
+
#elif defined(IN_LIBXML)
|
|
17
|
+
#define XMLPUBLIC __declspec(dllexport)
|
|
18
|
+
#else
|
|
19
|
+
#define XMLPUBLIC __declspec(dllimport)
|
|
20
|
+
#endif
|
|
21
|
+
|
|
22
|
+
#if defined(LIBXML_FASTCALL)
|
|
23
|
+
#define XMLCALL __fastcall
|
|
24
|
+
#else
|
|
25
|
+
#define XMLCALL __cdecl
|
|
26
|
+
#endif
|
|
27
|
+
#define XMLCDECL __cdecl
|
|
28
|
+
|
|
29
|
+
/** DOC_ENABLE */
|
|
30
|
+
#else /* not Windows */
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* XMLPUBLIC:
|
|
34
|
+
*
|
|
35
|
+
* Macro which declares a public symbol
|
|
36
|
+
*/
|
|
37
|
+
#define XMLPUBLIC
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* XMLCALL:
|
|
41
|
+
*
|
|
42
|
+
* Macro which declares the calling convention for exported functions
|
|
43
|
+
*/
|
|
44
|
+
#define XMLCALL
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* XMLCDECL:
|
|
48
|
+
*
|
|
49
|
+
* Macro which declares the calling convention for exported functions that
|
|
50
|
+
* use '...'.
|
|
51
|
+
*/
|
|
52
|
+
#define XMLCDECL
|
|
53
|
+
|
|
54
|
+
#endif /* platform switch */
|
|
55
|
+
|
|
56
|
+
/*
|
|
57
|
+
* XMLPUBFUN:
|
|
58
|
+
*
|
|
59
|
+
* Macro which declares an exportable function
|
|
60
|
+
*/
|
|
61
|
+
#define XMLPUBFUN XMLPUBLIC
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* XMLPUBVAR:
|
|
65
|
+
*
|
|
66
|
+
* Macro which declares an exportable variable
|
|
67
|
+
*/
|
|
68
|
+
#define XMLPUBVAR XMLPUBLIC extern
|
|
69
|
+
|
|
70
|
+
/** DOC_DISABLE */
|
|
71
|
+
/* Compatibility */
|
|
72
|
+
#if !defined(LIBXML_DLL_IMPORT)
|
|
73
|
+
#define LIBXML_DLL_IMPORT XMLPUBVAR
|
|
74
|
+
#endif
|
|
75
|
+
/** DOC_ENABLE */
|
|
76
|
+
|
|
77
|
+
#endif /* __XML_EXPORTS_H__ */
|
|
78
|
+
|
|
79
|
+
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: interface for the memory allocator
|
|
3
|
+
* Description: provides interfaces for the memory allocator,
|
|
4
|
+
* including debugging capabilities.
|
|
5
|
+
*
|
|
6
|
+
* Copy: See Copyright for the status of this software.
|
|
7
|
+
*
|
|
8
|
+
* Author: Daniel Veillard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
#ifndef __DEBUG_MEMORY_ALLOC__
|
|
13
|
+
#define __DEBUG_MEMORY_ALLOC__
|
|
14
|
+
|
|
15
|
+
#include <stdio.h>
|
|
16
|
+
#include "xmlversion.h"
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* DEBUG_MEMORY:
|
|
20
|
+
*
|
|
21
|
+
* DEBUG_MEMORY replaces the allocator with a collect and debug
|
|
22
|
+
* shell to the libc allocator.
|
|
23
|
+
* DEBUG_MEMORY should only be activated when debugging
|
|
24
|
+
* libxml i.e. if libxml has been configured with --with-debug-mem too.
|
|
25
|
+
*/
|
|
26
|
+
/* #define DEBUG_MEMORY_FREED */
|
|
27
|
+
/* #define DEBUG_MEMORY_LOCATION */
|
|
28
|
+
|
|
29
|
+
#ifdef DEBUG
|
|
30
|
+
#ifndef DEBUG_MEMORY
|
|
31
|
+
#define DEBUG_MEMORY
|
|
32
|
+
#endif
|
|
33
|
+
#endif
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* DEBUG_MEMORY_LOCATION:
|
|
37
|
+
*
|
|
38
|
+
* DEBUG_MEMORY_LOCATION should be activated only when debugging
|
|
39
|
+
* libxml i.e. if libxml has been configured with --with-debug-mem too.
|
|
40
|
+
*/
|
|
41
|
+
#ifdef DEBUG_MEMORY_LOCATION
|
|
42
|
+
#endif
|
|
43
|
+
|
|
44
|
+
#ifdef __cplusplus
|
|
45
|
+
extern "C" {
|
|
46
|
+
#endif
|
|
47
|
+
|
|
48
|
+
/*
|
|
49
|
+
* The XML memory wrapper support 4 basic overloadable functions.
|
|
50
|
+
*/
|
|
51
|
+
/**
|
|
52
|
+
* xmlFreeFunc:
|
|
53
|
+
* @mem: an already allocated block of memory
|
|
54
|
+
*
|
|
55
|
+
* Signature for a free() implementation.
|
|
56
|
+
*/
|
|
57
|
+
typedef void (XMLCALL *xmlFreeFunc)(void *mem);
|
|
58
|
+
/**
|
|
59
|
+
* xmlMallocFunc:
|
|
60
|
+
* @size: the size requested in bytes
|
|
61
|
+
*
|
|
62
|
+
* Signature for a malloc() implementation.
|
|
63
|
+
*
|
|
64
|
+
* Returns a pointer to the newly allocated block or NULL in case of error.
|
|
65
|
+
*/
|
|
66
|
+
typedef void *(LIBXML_ATTR_ALLOC_SIZE(1) XMLCALL *xmlMallocFunc)(size_t size);
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* xmlReallocFunc:
|
|
70
|
+
* @mem: an already allocated block of memory
|
|
71
|
+
* @size: the new size requested in bytes
|
|
72
|
+
*
|
|
73
|
+
* Signature for a realloc() implementation.
|
|
74
|
+
*
|
|
75
|
+
* Returns a pointer to the newly reallocated block or NULL in case of error.
|
|
76
|
+
*/
|
|
77
|
+
typedef void *(XMLCALL *xmlReallocFunc)(void *mem, size_t size);
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* xmlStrdupFunc:
|
|
81
|
+
* @str: a zero terminated string
|
|
82
|
+
*
|
|
83
|
+
* Signature for an strdup() implementation.
|
|
84
|
+
*
|
|
85
|
+
* Returns the copy of the string or NULL in case of error.
|
|
86
|
+
*/
|
|
87
|
+
typedef char *(XMLCALL *xmlStrdupFunc)(const char *str);
|
|
88
|
+
|
|
89
|
+
/*
|
|
90
|
+
* The 4 interfaces used for all memory handling within libxml.
|
|
91
|
+
LIBXML_DLL_IMPORT xmlFreeFunc xmlFree;
|
|
92
|
+
LIBXML_DLL_IMPORT xmlMallocFunc xmlMalloc;
|
|
93
|
+
LIBXML_DLL_IMPORT xmlMallocFunc xmlMallocAtomic;
|
|
94
|
+
LIBXML_DLL_IMPORT xmlReallocFunc xmlRealloc;
|
|
95
|
+
LIBXML_DLL_IMPORT xmlStrdupFunc xmlMemStrdup;
|
|
96
|
+
*/
|
|
97
|
+
|
|
98
|
+
/*
|
|
99
|
+
* The way to overload the existing functions.
|
|
100
|
+
* The xmlGc function have an extra entry for atomic block
|
|
101
|
+
* allocations useful for garbage collected memory allocators
|
|
102
|
+
*/
|
|
103
|
+
XMLPUBFUN int XMLCALL
|
|
104
|
+
xmlMemSetup (xmlFreeFunc freeFunc,
|
|
105
|
+
xmlMallocFunc mallocFunc,
|
|
106
|
+
xmlReallocFunc reallocFunc,
|
|
107
|
+
xmlStrdupFunc strdupFunc);
|
|
108
|
+
XMLPUBFUN int XMLCALL
|
|
109
|
+
xmlMemGet (xmlFreeFunc *freeFunc,
|
|
110
|
+
xmlMallocFunc *mallocFunc,
|
|
111
|
+
xmlReallocFunc *reallocFunc,
|
|
112
|
+
xmlStrdupFunc *strdupFunc);
|
|
113
|
+
XMLPUBFUN int XMLCALL
|
|
114
|
+
xmlGcMemSetup (xmlFreeFunc freeFunc,
|
|
115
|
+
xmlMallocFunc mallocFunc,
|
|
116
|
+
xmlMallocFunc mallocAtomicFunc,
|
|
117
|
+
xmlReallocFunc reallocFunc,
|
|
118
|
+
xmlStrdupFunc strdupFunc);
|
|
119
|
+
XMLPUBFUN int XMLCALL
|
|
120
|
+
xmlGcMemGet (xmlFreeFunc *freeFunc,
|
|
121
|
+
xmlMallocFunc *mallocFunc,
|
|
122
|
+
xmlMallocFunc *mallocAtomicFunc,
|
|
123
|
+
xmlReallocFunc *reallocFunc,
|
|
124
|
+
xmlStrdupFunc *strdupFunc);
|
|
125
|
+
|
|
126
|
+
/*
|
|
127
|
+
* Initialization of the memory layer.
|
|
128
|
+
*/
|
|
129
|
+
XML_DEPRECATED
|
|
130
|
+
XMLPUBFUN int XMLCALL
|
|
131
|
+
xmlInitMemory (void);
|
|
132
|
+
|
|
133
|
+
/*
|
|
134
|
+
* Cleanup of the memory layer.
|
|
135
|
+
*/
|
|
136
|
+
XML_DEPRECATED
|
|
137
|
+
XMLPUBFUN void XMLCALL
|
|
138
|
+
xmlCleanupMemory (void);
|
|
139
|
+
/*
|
|
140
|
+
* These are specific to the XML debug memory wrapper.
|
|
141
|
+
*/
|
|
142
|
+
XMLPUBFUN int XMLCALL
|
|
143
|
+
xmlMemUsed (void);
|
|
144
|
+
XMLPUBFUN int XMLCALL
|
|
145
|
+
xmlMemBlocks (void);
|
|
146
|
+
XMLPUBFUN void XMLCALL
|
|
147
|
+
xmlMemDisplay (FILE *fp);
|
|
148
|
+
XMLPUBFUN void XMLCALL
|
|
149
|
+
xmlMemDisplayLast(FILE *fp, long nbBytes);
|
|
150
|
+
XMLPUBFUN void XMLCALL
|
|
151
|
+
xmlMemShow (FILE *fp, int nr);
|
|
152
|
+
XMLPUBFUN void XMLCALL
|
|
153
|
+
xmlMemoryDump (void);
|
|
154
|
+
XMLPUBFUN void * XMLCALL
|
|
155
|
+
xmlMemMalloc (size_t size) LIBXML_ATTR_ALLOC_SIZE(1);
|
|
156
|
+
XMLPUBFUN void * XMLCALL
|
|
157
|
+
xmlMemRealloc (void *ptr,size_t size);
|
|
158
|
+
XMLPUBFUN void XMLCALL
|
|
159
|
+
xmlMemFree (void *ptr);
|
|
160
|
+
XMLPUBFUN char * XMLCALL
|
|
161
|
+
xmlMemoryStrdup (const char *str);
|
|
162
|
+
XMLPUBFUN void * XMLCALL
|
|
163
|
+
xmlMallocLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
|
|
164
|
+
XMLPUBFUN void * XMLCALL
|
|
165
|
+
xmlReallocLoc (void *ptr, size_t size, const char *file, int line);
|
|
166
|
+
XMLPUBFUN void * XMLCALL
|
|
167
|
+
xmlMallocAtomicLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
|
|
168
|
+
XMLPUBFUN char * XMLCALL
|
|
169
|
+
xmlMemStrdupLoc (const char *str, const char *file, int line);
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
#ifdef DEBUG_MEMORY_LOCATION
|
|
173
|
+
/**
|
|
174
|
+
* xmlMalloc:
|
|
175
|
+
* @size: number of bytes to allocate
|
|
176
|
+
*
|
|
177
|
+
* Wrapper for the malloc() function used in the XML library.
|
|
178
|
+
*
|
|
179
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
|
180
|
+
*/
|
|
181
|
+
#define xmlMalloc(size) xmlMallocLoc((size), __FILE__, __LINE__)
|
|
182
|
+
/**
|
|
183
|
+
* xmlMallocAtomic:
|
|
184
|
+
* @size: number of bytes to allocate
|
|
185
|
+
*
|
|
186
|
+
* Wrapper for the malloc() function used in the XML library for allocation
|
|
187
|
+
* of block not containing pointers to other areas.
|
|
188
|
+
*
|
|
189
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
|
190
|
+
*/
|
|
191
|
+
#define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__)
|
|
192
|
+
/**
|
|
193
|
+
* xmlRealloc:
|
|
194
|
+
* @ptr: pointer to the existing allocated area
|
|
195
|
+
* @size: number of bytes to allocate
|
|
196
|
+
*
|
|
197
|
+
* Wrapper for the realloc() function used in the XML library.
|
|
198
|
+
*
|
|
199
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
|
200
|
+
*/
|
|
201
|
+
#define xmlRealloc(ptr, size) xmlReallocLoc((ptr), (size), __FILE__, __LINE__)
|
|
202
|
+
/**
|
|
203
|
+
* xmlMemStrdup:
|
|
204
|
+
* @str: pointer to the existing string
|
|
205
|
+
*
|
|
206
|
+
* Wrapper for the strdup() function, xmlStrdup() is usually preferred.
|
|
207
|
+
*
|
|
208
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
|
209
|
+
*/
|
|
210
|
+
#define xmlMemStrdup(str) xmlMemStrdupLoc((str), __FILE__, __LINE__)
|
|
211
|
+
|
|
212
|
+
#endif /* DEBUG_MEMORY_LOCATION */
|
|
213
|
+
|
|
214
|
+
#ifdef __cplusplus
|
|
215
|
+
}
|
|
216
|
+
#endif /* __cplusplus */
|
|
217
|
+
|
|
218
|
+
#ifndef __XML_GLOBALS_H
|
|
219
|
+
#ifndef __XML_THREADS_H__
|
|
220
|
+
#include "threads.h"
|
|
221
|
+
#include "globals.h"
|
|
222
|
+
#endif
|
|
223
|
+
#endif
|
|
224
|
+
|
|
225
|
+
#endif /* __DEBUG_MEMORY_ALLOC__ */
|
|
226
|
+
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: regular expressions handling
|
|
3
|
+
* Description: basic API for libxml regular expressions handling used
|
|
4
|
+
* for XML Schemas and validation.
|
|
5
|
+
*
|
|
6
|
+
* Copy: See Copyright for the status of this software.
|
|
7
|
+
*
|
|
8
|
+
* Author: Daniel Veillard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#ifndef __XML_REGEXP_H__
|
|
12
|
+
#define __XML_REGEXP_H__
|
|
13
|
+
|
|
14
|
+
#include "xmlversion.h"
|
|
15
|
+
|
|
16
|
+
#ifdef LIBXML_REGEXP_ENABLED
|
|
17
|
+
|
|
18
|
+
#ifdef __cplusplus
|
|
19
|
+
extern "C" {
|
|
20
|
+
#endif
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* xmlRegexpPtr:
|
|
24
|
+
*
|
|
25
|
+
* A libxml regular expression, they can actually be far more complex
|
|
26
|
+
* thank the POSIX regex expressions.
|
|
27
|
+
*/
|
|
28
|
+
typedef struct _xmlRegexp xmlRegexp;
|
|
29
|
+
typedef xmlRegexp *xmlRegexpPtr;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* xmlRegExecCtxtPtr:
|
|
33
|
+
*
|
|
34
|
+
* A libxml progressive regular expression evaluation context
|
|
35
|
+
*/
|
|
36
|
+
typedef struct _xmlRegExecCtxt xmlRegExecCtxt;
|
|
37
|
+
typedef xmlRegExecCtxt *xmlRegExecCtxtPtr;
|
|
38
|
+
|
|
39
|
+
#ifdef __cplusplus
|
|
40
|
+
}
|
|
41
|
+
#endif
|
|
42
|
+
#include "tree.h"
|
|
43
|
+
#include "dict.h"
|
|
44
|
+
#ifdef __cplusplus
|
|
45
|
+
extern "C" {
|
|
46
|
+
#endif
|
|
47
|
+
|
|
48
|
+
/*
|
|
49
|
+
* The POSIX like API
|
|
50
|
+
*/
|
|
51
|
+
XMLPUBFUN xmlRegexpPtr XMLCALL
|
|
52
|
+
xmlRegexpCompile (const xmlChar *regexp);
|
|
53
|
+
XMLPUBFUN void XMLCALL xmlRegFreeRegexp(xmlRegexpPtr regexp);
|
|
54
|
+
XMLPUBFUN int XMLCALL
|
|
55
|
+
xmlRegexpExec (xmlRegexpPtr comp,
|
|
56
|
+
const xmlChar *value);
|
|
57
|
+
XMLPUBFUN void XMLCALL
|
|
58
|
+
xmlRegexpPrint (FILE *output,
|
|
59
|
+
xmlRegexpPtr regexp);
|
|
60
|
+
XMLPUBFUN int XMLCALL
|
|
61
|
+
xmlRegexpIsDeterminist(xmlRegexpPtr comp);
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* xmlRegExecCallbacks:
|
|
65
|
+
* @exec: the regular expression context
|
|
66
|
+
* @token: the current token string
|
|
67
|
+
* @transdata: transition data
|
|
68
|
+
* @inputdata: input data
|
|
69
|
+
*
|
|
70
|
+
* Callback function when doing a transition in the automata
|
|
71
|
+
*/
|
|
72
|
+
typedef void (*xmlRegExecCallbacks) (xmlRegExecCtxtPtr exec,
|
|
73
|
+
const xmlChar *token,
|
|
74
|
+
void *transdata,
|
|
75
|
+
void *inputdata);
|
|
76
|
+
|
|
77
|
+
/*
|
|
78
|
+
* The progressive API
|
|
79
|
+
*/
|
|
80
|
+
XMLPUBFUN xmlRegExecCtxtPtr XMLCALL
|
|
81
|
+
xmlRegNewExecCtxt (xmlRegexpPtr comp,
|
|
82
|
+
xmlRegExecCallbacks callback,
|
|
83
|
+
void *data);
|
|
84
|
+
XMLPUBFUN void XMLCALL
|
|
85
|
+
xmlRegFreeExecCtxt (xmlRegExecCtxtPtr exec);
|
|
86
|
+
XMLPUBFUN int XMLCALL
|
|
87
|
+
xmlRegExecPushString(xmlRegExecCtxtPtr exec,
|
|
88
|
+
const xmlChar *value,
|
|
89
|
+
void *data);
|
|
90
|
+
XMLPUBFUN int XMLCALL
|
|
91
|
+
xmlRegExecPushString2(xmlRegExecCtxtPtr exec,
|
|
92
|
+
const xmlChar *value,
|
|
93
|
+
const xmlChar *value2,
|
|
94
|
+
void *data);
|
|
95
|
+
|
|
96
|
+
XMLPUBFUN int XMLCALL
|
|
97
|
+
xmlRegExecNextValues(xmlRegExecCtxtPtr exec,
|
|
98
|
+
int *nbval,
|
|
99
|
+
int *nbneg,
|
|
100
|
+
xmlChar **values,
|
|
101
|
+
int *terminal);
|
|
102
|
+
XMLPUBFUN int XMLCALL
|
|
103
|
+
xmlRegExecErrInfo (xmlRegExecCtxtPtr exec,
|
|
104
|
+
const xmlChar **string,
|
|
105
|
+
int *nbval,
|
|
106
|
+
int *nbneg,
|
|
107
|
+
xmlChar **values,
|
|
108
|
+
int *terminal);
|
|
109
|
+
#ifdef LIBXML_EXPR_ENABLED
|
|
110
|
+
/*
|
|
111
|
+
* Formal regular expression handling
|
|
112
|
+
* Its goal is to do some formal work on content models
|
|
113
|
+
*/
|
|
114
|
+
|
|
115
|
+
/* expressions are used within a context */
|
|
116
|
+
typedef struct _xmlExpCtxt xmlExpCtxt;
|
|
117
|
+
typedef xmlExpCtxt *xmlExpCtxtPtr;
|
|
118
|
+
|
|
119
|
+
XMLPUBFUN void XMLCALL
|
|
120
|
+
xmlExpFreeCtxt (xmlExpCtxtPtr ctxt);
|
|
121
|
+
XMLPUBFUN xmlExpCtxtPtr XMLCALL
|
|
122
|
+
xmlExpNewCtxt (int maxNodes,
|
|
123
|
+
xmlDictPtr dict);
|
|
124
|
+
|
|
125
|
+
XMLPUBFUN int XMLCALL
|
|
126
|
+
xmlExpCtxtNbNodes(xmlExpCtxtPtr ctxt);
|
|
127
|
+
XMLPUBFUN int XMLCALL
|
|
128
|
+
xmlExpCtxtNbCons(xmlExpCtxtPtr ctxt);
|
|
129
|
+
|
|
130
|
+
/* Expressions are trees but the tree is opaque */
|
|
131
|
+
typedef struct _xmlExpNode xmlExpNode;
|
|
132
|
+
typedef xmlExpNode *xmlExpNodePtr;
|
|
133
|
+
|
|
134
|
+
typedef enum {
|
|
135
|
+
XML_EXP_EMPTY = 0,
|
|
136
|
+
XML_EXP_FORBID = 1,
|
|
137
|
+
XML_EXP_ATOM = 2,
|
|
138
|
+
XML_EXP_SEQ = 3,
|
|
139
|
+
XML_EXP_OR = 4,
|
|
140
|
+
XML_EXP_COUNT = 5
|
|
141
|
+
} xmlExpNodeType;
|
|
142
|
+
|
|
143
|
+
/*
|
|
144
|
+
* 2 core expressions shared by all for the empty language set
|
|
145
|
+
* and for the set with just the empty token
|
|
146
|
+
*/
|
|
147
|
+
XMLPUBVAR xmlExpNodePtr forbiddenExp;
|
|
148
|
+
XMLPUBVAR xmlExpNodePtr emptyExp;
|
|
149
|
+
|
|
150
|
+
/*
|
|
151
|
+
* Expressions are reference counted internally
|
|
152
|
+
*/
|
|
153
|
+
XMLPUBFUN void XMLCALL
|
|
154
|
+
xmlExpFree (xmlExpCtxtPtr ctxt,
|
|
155
|
+
xmlExpNodePtr expr);
|
|
156
|
+
XMLPUBFUN void XMLCALL
|
|
157
|
+
xmlExpRef (xmlExpNodePtr expr);
|
|
158
|
+
|
|
159
|
+
/*
|
|
160
|
+
* constructors can be either manual or from a string
|
|
161
|
+
*/
|
|
162
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
163
|
+
xmlExpParse (xmlExpCtxtPtr ctxt,
|
|
164
|
+
const char *expr);
|
|
165
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
166
|
+
xmlExpNewAtom (xmlExpCtxtPtr ctxt,
|
|
167
|
+
const xmlChar *name,
|
|
168
|
+
int len);
|
|
169
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
170
|
+
xmlExpNewOr (xmlExpCtxtPtr ctxt,
|
|
171
|
+
xmlExpNodePtr left,
|
|
172
|
+
xmlExpNodePtr right);
|
|
173
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
174
|
+
xmlExpNewSeq (xmlExpCtxtPtr ctxt,
|
|
175
|
+
xmlExpNodePtr left,
|
|
176
|
+
xmlExpNodePtr right);
|
|
177
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
178
|
+
xmlExpNewRange (xmlExpCtxtPtr ctxt,
|
|
179
|
+
xmlExpNodePtr subset,
|
|
180
|
+
int min,
|
|
181
|
+
int max);
|
|
182
|
+
/*
|
|
183
|
+
* The really interesting APIs
|
|
184
|
+
*/
|
|
185
|
+
XMLPUBFUN int XMLCALL
|
|
186
|
+
xmlExpIsNillable(xmlExpNodePtr expr);
|
|
187
|
+
XMLPUBFUN int XMLCALL
|
|
188
|
+
xmlExpMaxToken (xmlExpNodePtr expr);
|
|
189
|
+
XMLPUBFUN int XMLCALL
|
|
190
|
+
xmlExpGetLanguage(xmlExpCtxtPtr ctxt,
|
|
191
|
+
xmlExpNodePtr expr,
|
|
192
|
+
const xmlChar**langList,
|
|
193
|
+
int len);
|
|
194
|
+
XMLPUBFUN int XMLCALL
|
|
195
|
+
xmlExpGetStart (xmlExpCtxtPtr ctxt,
|
|
196
|
+
xmlExpNodePtr expr,
|
|
197
|
+
const xmlChar**tokList,
|
|
198
|
+
int len);
|
|
199
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
200
|
+
xmlExpStringDerive(xmlExpCtxtPtr ctxt,
|
|
201
|
+
xmlExpNodePtr expr,
|
|
202
|
+
const xmlChar *str,
|
|
203
|
+
int len);
|
|
204
|
+
XMLPUBFUN xmlExpNodePtr XMLCALL
|
|
205
|
+
xmlExpExpDerive (xmlExpCtxtPtr ctxt,
|
|
206
|
+
xmlExpNodePtr expr,
|
|
207
|
+
xmlExpNodePtr sub);
|
|
208
|
+
XMLPUBFUN int XMLCALL
|
|
209
|
+
xmlExpSubsume (xmlExpCtxtPtr ctxt,
|
|
210
|
+
xmlExpNodePtr expr,
|
|
211
|
+
xmlExpNodePtr sub);
|
|
212
|
+
XMLPUBFUN void XMLCALL
|
|
213
|
+
xmlExpDump (xmlBufferPtr buf,
|
|
214
|
+
xmlExpNodePtr expr);
|
|
215
|
+
#endif /* LIBXML_EXPR_ENABLED */
|
|
216
|
+
#ifdef __cplusplus
|
|
217
|
+
}
|
|
218
|
+
#endif
|
|
219
|
+
|
|
220
|
+
#endif /* LIBXML_REGEXP_ENABLED */
|
|
221
|
+
|
|
222
|
+
#endif /*__XML_REGEXP_H__ */
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: set of routines to process strings
|
|
3
|
+
* Description: type and interfaces needed for the internal string handling
|
|
4
|
+
* of the library, especially UTF8 processing.
|
|
5
|
+
*
|
|
6
|
+
* Copy: See Copyright for the status of this software.
|
|
7
|
+
*
|
|
8
|
+
* Author: Daniel Veillard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#ifndef __XML_STRING_H__
|
|
12
|
+
#define __XML_STRING_H__
|
|
13
|
+
|
|
14
|
+
#include <stdarg.h>
|
|
15
|
+
#include "xmlversion.h"
|
|
16
|
+
|
|
17
|
+
#ifdef __cplusplus
|
|
18
|
+
extern "C" {
|
|
19
|
+
#endif
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* xmlChar:
|
|
23
|
+
*
|
|
24
|
+
* This is a basic byte in an UTF-8 encoded string.
|
|
25
|
+
* It's unsigned allowing to pinpoint case where char * are assigned
|
|
26
|
+
* to xmlChar * (possibly making serialization back impossible).
|
|
27
|
+
*/
|
|
28
|
+
typedef unsigned char xmlChar;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* BAD_CAST:
|
|
32
|
+
*
|
|
33
|
+
* Macro to cast a string to an xmlChar * when one know its safe.
|
|
34
|
+
*/
|
|
35
|
+
#define BAD_CAST (xmlChar *)
|
|
36
|
+
|
|
37
|
+
/*
|
|
38
|
+
* xmlChar handling
|
|
39
|
+
*/
|
|
40
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
41
|
+
xmlStrdup (const xmlChar *cur);
|
|
42
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
43
|
+
xmlStrndup (const xmlChar *cur,
|
|
44
|
+
int len);
|
|
45
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
46
|
+
xmlCharStrndup (const char *cur,
|
|
47
|
+
int len);
|
|
48
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
49
|
+
xmlCharStrdup (const char *cur);
|
|
50
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
51
|
+
xmlStrsub (const xmlChar *str,
|
|
52
|
+
int start,
|
|
53
|
+
int len);
|
|
54
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
55
|
+
xmlStrchr (const xmlChar *str,
|
|
56
|
+
xmlChar val);
|
|
57
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
58
|
+
xmlStrstr (const xmlChar *str,
|
|
59
|
+
const xmlChar *val);
|
|
60
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
61
|
+
xmlStrcasestr (const xmlChar *str,
|
|
62
|
+
const xmlChar *val);
|
|
63
|
+
XMLPUBFUN int XMLCALL
|
|
64
|
+
xmlStrcmp (const xmlChar *str1,
|
|
65
|
+
const xmlChar *str2);
|
|
66
|
+
XMLPUBFUN int XMLCALL
|
|
67
|
+
xmlStrncmp (const xmlChar *str1,
|
|
68
|
+
const xmlChar *str2,
|
|
69
|
+
int len);
|
|
70
|
+
XMLPUBFUN int XMLCALL
|
|
71
|
+
xmlStrcasecmp (const xmlChar *str1,
|
|
72
|
+
const xmlChar *str2);
|
|
73
|
+
XMLPUBFUN int XMLCALL
|
|
74
|
+
xmlStrncasecmp (const xmlChar *str1,
|
|
75
|
+
const xmlChar *str2,
|
|
76
|
+
int len);
|
|
77
|
+
XMLPUBFUN int XMLCALL
|
|
78
|
+
xmlStrEqual (const xmlChar *str1,
|
|
79
|
+
const xmlChar *str2);
|
|
80
|
+
XMLPUBFUN int XMLCALL
|
|
81
|
+
xmlStrQEqual (const xmlChar *pref,
|
|
82
|
+
const xmlChar *name,
|
|
83
|
+
const xmlChar *str);
|
|
84
|
+
XMLPUBFUN int XMLCALL
|
|
85
|
+
xmlStrlen (const xmlChar *str);
|
|
86
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
87
|
+
xmlStrcat (xmlChar *cur,
|
|
88
|
+
const xmlChar *add);
|
|
89
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
90
|
+
xmlStrncat (xmlChar *cur,
|
|
91
|
+
const xmlChar *add,
|
|
92
|
+
int len);
|
|
93
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
94
|
+
xmlStrncatNew (const xmlChar *str1,
|
|
95
|
+
const xmlChar *str2,
|
|
96
|
+
int len);
|
|
97
|
+
XMLPUBFUN int XMLCALL
|
|
98
|
+
xmlStrPrintf (xmlChar *buf,
|
|
99
|
+
int len,
|
|
100
|
+
const char *msg,
|
|
101
|
+
...) LIBXML_ATTR_FORMAT(3,4);
|
|
102
|
+
XMLPUBFUN int XMLCALL
|
|
103
|
+
xmlStrVPrintf (xmlChar *buf,
|
|
104
|
+
int len,
|
|
105
|
+
const char *msg,
|
|
106
|
+
va_list ap) LIBXML_ATTR_FORMAT(3,0);
|
|
107
|
+
|
|
108
|
+
XMLPUBFUN int XMLCALL
|
|
109
|
+
xmlGetUTF8Char (const unsigned char *utf,
|
|
110
|
+
int *len);
|
|
111
|
+
XMLPUBFUN int XMLCALL
|
|
112
|
+
xmlCheckUTF8 (const unsigned char *utf);
|
|
113
|
+
XMLPUBFUN int XMLCALL
|
|
114
|
+
xmlUTF8Strsize (const xmlChar *utf,
|
|
115
|
+
int len);
|
|
116
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
117
|
+
xmlUTF8Strndup (const xmlChar *utf,
|
|
118
|
+
int len);
|
|
119
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
120
|
+
xmlUTF8Strpos (const xmlChar *utf,
|
|
121
|
+
int pos);
|
|
122
|
+
XMLPUBFUN int XMLCALL
|
|
123
|
+
xmlUTF8Strloc (const xmlChar *utf,
|
|
124
|
+
const xmlChar *utfchar);
|
|
125
|
+
XMLPUBFUN xmlChar * XMLCALL
|
|
126
|
+
xmlUTF8Strsub (const xmlChar *utf,
|
|
127
|
+
int start,
|
|
128
|
+
int len);
|
|
129
|
+
XMLPUBFUN int XMLCALL
|
|
130
|
+
xmlUTF8Strlen (const xmlChar *utf);
|
|
131
|
+
XMLPUBFUN int XMLCALL
|
|
132
|
+
xmlUTF8Size (const xmlChar *utf);
|
|
133
|
+
XMLPUBFUN int XMLCALL
|
|
134
|
+
xmlUTF8Charcmp (const xmlChar *utf1,
|
|
135
|
+
const xmlChar *utf2);
|
|
136
|
+
|
|
137
|
+
#ifdef __cplusplus
|
|
138
|
+
}
|
|
139
|
+
#endif
|
|
140
|
+
#endif /* __XML_STRING_H__ */
|