nokolexbor 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,575 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: XML Path Language implementation
|
3
|
+
* Description: API for the XML Path Language implementation
|
4
|
+
*
|
5
|
+
* XML Path Language implementation
|
6
|
+
* XPath is a language for addressing parts of an XML document,
|
7
|
+
* designed to be used by both XSLT and XPointer
|
8
|
+
* http://www.w3.org/TR/xpath
|
9
|
+
*
|
10
|
+
* Implements
|
11
|
+
* W3C Recommendation 16 November 1999
|
12
|
+
* http://www.w3.org/TR/1999/REC-xpath-19991116
|
13
|
+
*
|
14
|
+
* Copy: See Copyright for the status of this software.
|
15
|
+
*
|
16
|
+
* Author: Daniel Veillard
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef __XML_XPATH_H__
|
20
|
+
#define __XML_XPATH_H__
|
21
|
+
|
22
|
+
#include "xmlversion.h"
|
23
|
+
|
24
|
+
#ifdef LIBXML_XPATH_ENABLED
|
25
|
+
|
26
|
+
#include "xmlerror.h"
|
27
|
+
#include "tree.h"
|
28
|
+
#include "hash.h"
|
29
|
+
#endif /* LIBXML_XPATH_ENABLED */
|
30
|
+
|
31
|
+
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
|
32
|
+
#ifdef __cplusplus
|
33
|
+
extern "C" {
|
34
|
+
#endif
|
35
|
+
#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED */
|
36
|
+
|
37
|
+
#ifdef LIBXML_XPATH_ENABLED
|
38
|
+
|
39
|
+
typedef struct _xmlXPathContext xmlXPathContext;
|
40
|
+
typedef xmlXPathContext *xmlXPathContextPtr;
|
41
|
+
typedef struct _xmlXPathParserContext xmlXPathParserContext;
|
42
|
+
typedef xmlXPathParserContext *xmlXPathParserContextPtr;
|
43
|
+
|
44
|
+
/**
|
45
|
+
* The set of XPath error codes.
|
46
|
+
*/
|
47
|
+
|
48
|
+
typedef enum {
|
49
|
+
XPATH_EXPRESSION_OK = 0,
|
50
|
+
XPATH_NUMBER_ERROR,
|
51
|
+
XPATH_UNFINISHED_LITERAL_ERROR,
|
52
|
+
XPATH_START_LITERAL_ERROR,
|
53
|
+
XPATH_VARIABLE_REF_ERROR,
|
54
|
+
XPATH_UNDEF_VARIABLE_ERROR,
|
55
|
+
XPATH_INVALID_PREDICATE_ERROR,
|
56
|
+
XPATH_EXPR_ERROR,
|
57
|
+
XPATH_UNCLOSED_ERROR,
|
58
|
+
XPATH_UNKNOWN_FUNC_ERROR,
|
59
|
+
XPATH_INVALID_OPERAND,
|
60
|
+
XPATH_INVALID_TYPE,
|
61
|
+
XPATH_INVALID_ARITY,
|
62
|
+
XPATH_INVALID_CTXT_SIZE,
|
63
|
+
XPATH_INVALID_CTXT_POSITION,
|
64
|
+
XPATH_MEMORY_ERROR,
|
65
|
+
XPTR_SYNTAX_ERROR,
|
66
|
+
XPTR_RESOURCE_ERROR,
|
67
|
+
XPTR_SUB_RESOURCE_ERROR,
|
68
|
+
XPATH_UNDEF_PREFIX_ERROR,
|
69
|
+
XPATH_ENCODING_ERROR,
|
70
|
+
XPATH_INVALID_CHAR_ERROR,
|
71
|
+
XPATH_INVALID_CTXT,
|
72
|
+
XPATH_STACK_ERROR,
|
73
|
+
XPATH_FORBID_VARIABLE_ERROR,
|
74
|
+
XPATH_OP_LIMIT_EXCEEDED,
|
75
|
+
XPATH_RECURSION_LIMIT_EXCEEDED
|
76
|
+
} xmlXPathError;
|
77
|
+
|
78
|
+
/*
|
79
|
+
* A node-set (an unordered collection of nodes without duplicates).
|
80
|
+
*/
|
81
|
+
typedef struct _xmlNodeSet xmlNodeSet;
|
82
|
+
typedef xmlNodeSet *xmlNodeSetPtr;
|
83
|
+
struct _xmlNodeSet {
|
84
|
+
int nodeNr; /* number of nodes in the set */
|
85
|
+
int nodeMax; /* size of the array as allocated */
|
86
|
+
lxb_dom_node_t_ptr *nodeTab; /* array of nodes in no particular order */
|
87
|
+
/* @@ with_ns to check whether namespace nodes should be looked at @@ */
|
88
|
+
};
|
89
|
+
|
90
|
+
/*
|
91
|
+
* An expression is evaluated to yield an object, which
|
92
|
+
* has one of the following four basic types:
|
93
|
+
* - node-set
|
94
|
+
* - boolean
|
95
|
+
* - number
|
96
|
+
* - string
|
97
|
+
*
|
98
|
+
* @@ XPointer will add more types !
|
99
|
+
*/
|
100
|
+
|
101
|
+
typedef enum {
|
102
|
+
XPATH_UNDEFINED = 0,
|
103
|
+
XPATH_NODESET = 1,
|
104
|
+
XPATH_BOOLEAN = 2,
|
105
|
+
XPATH_NUMBER = 3,
|
106
|
+
XPATH_STRING = 4,
|
107
|
+
#ifdef LIBXML_XPTR_LOCS_ENABLED
|
108
|
+
XPATH_POINT = 5,
|
109
|
+
XPATH_RANGE = 6,
|
110
|
+
XPATH_LOCATIONSET = 7,
|
111
|
+
#endif
|
112
|
+
XPATH_USERS = 8,
|
113
|
+
XPATH_XSLT_TREE = 9 /* An XSLT value tree, non modifiable */
|
114
|
+
} xmlXPathObjectType;
|
115
|
+
|
116
|
+
#ifndef LIBXML_XPTR_LOCS_ENABLED
|
117
|
+
/** DOC_DISABLE */
|
118
|
+
#define XPATH_POINT 5
|
119
|
+
#define XPATH_RANGE 6
|
120
|
+
#define XPATH_LOCATIONSET 7
|
121
|
+
/** DOC_ENABLE */
|
122
|
+
#endif
|
123
|
+
|
124
|
+
typedef struct _xmlXPathObject xmlXPathObject;
|
125
|
+
typedef xmlXPathObject *xmlXPathObjectPtr;
|
126
|
+
struct _xmlXPathObject {
|
127
|
+
xmlXPathObjectType type;
|
128
|
+
xmlNodeSetPtr nodesetval;
|
129
|
+
int boolval;
|
130
|
+
double floatval;
|
131
|
+
xmlChar *stringval;
|
132
|
+
void *user;
|
133
|
+
int index;
|
134
|
+
void *user2;
|
135
|
+
int index2;
|
136
|
+
};
|
137
|
+
|
138
|
+
/**
|
139
|
+
* xmlXPathConvertFunc:
|
140
|
+
* @obj: an XPath object
|
141
|
+
* @type: the number of the target type
|
142
|
+
*
|
143
|
+
* A conversion function is associated to a type and used to cast
|
144
|
+
* the new type to primitive values.
|
145
|
+
*
|
146
|
+
* Returns -1 in case of error, 0 otherwise
|
147
|
+
*/
|
148
|
+
typedef int (*xmlXPathConvertFunc) (xmlXPathObjectPtr obj, int type);
|
149
|
+
|
150
|
+
/*
|
151
|
+
* Extra type: a name and a conversion function.
|
152
|
+
*/
|
153
|
+
|
154
|
+
typedef struct _xmlXPathType xmlXPathType;
|
155
|
+
typedef xmlXPathType *xmlXPathTypePtr;
|
156
|
+
struct _xmlXPathType {
|
157
|
+
const xmlChar *name; /* the type name */
|
158
|
+
xmlXPathConvertFunc func; /* the conversion function */
|
159
|
+
};
|
160
|
+
|
161
|
+
/*
|
162
|
+
* Extra variable: a name and a value.
|
163
|
+
*/
|
164
|
+
|
165
|
+
typedef struct _xmlXPathVariable xmlXPathVariable;
|
166
|
+
typedef xmlXPathVariable *xmlXPathVariablePtr;
|
167
|
+
struct _xmlXPathVariable {
|
168
|
+
const xmlChar *name; /* the variable name */
|
169
|
+
xmlXPathObjectPtr value; /* the value */
|
170
|
+
};
|
171
|
+
|
172
|
+
/**
|
173
|
+
* xmlXPathEvalFunc:
|
174
|
+
* @ctxt: an XPath parser context
|
175
|
+
* @nargs: the number of arguments passed to the function
|
176
|
+
*
|
177
|
+
* An XPath evaluation function, the parameters are on the XPath context stack.
|
178
|
+
*/
|
179
|
+
|
180
|
+
typedef void (*xmlXPathEvalFunc)(xmlXPathParserContextPtr ctxt,
|
181
|
+
int nargs);
|
182
|
+
|
183
|
+
/*
|
184
|
+
* Extra function: a name and a evaluation function.
|
185
|
+
*/
|
186
|
+
|
187
|
+
typedef struct _xmlXPathFunct xmlXPathFunct;
|
188
|
+
typedef xmlXPathFunct *xmlXPathFuncPtr;
|
189
|
+
struct _xmlXPathFunct {
|
190
|
+
const xmlChar *name; /* the function name */
|
191
|
+
xmlXPathEvalFunc func; /* the evaluation function */
|
192
|
+
};
|
193
|
+
|
194
|
+
/**
|
195
|
+
* xmlXPathAxisFunc:
|
196
|
+
* @ctxt: the XPath interpreter context
|
197
|
+
* @cur: the previous node being explored on that axis
|
198
|
+
*
|
199
|
+
* An axis traversal function. To traverse an axis, the engine calls
|
200
|
+
* the first time with cur == NULL and repeat until the function returns
|
201
|
+
* NULL indicating the end of the axis traversal.
|
202
|
+
*
|
203
|
+
* Returns the next node in that axis or NULL if at the end of the axis.
|
204
|
+
*/
|
205
|
+
|
206
|
+
typedef xmlXPathObjectPtr (*xmlXPathAxisFunc) (xmlXPathParserContextPtr ctxt,
|
207
|
+
xmlXPathObjectPtr cur);
|
208
|
+
|
209
|
+
/*
|
210
|
+
* Extra axis: a name and an axis function.
|
211
|
+
*/
|
212
|
+
|
213
|
+
typedef struct _xmlXPathAxis xmlXPathAxis;
|
214
|
+
typedef xmlXPathAxis *xmlXPathAxisPtr;
|
215
|
+
struct _xmlXPathAxis {
|
216
|
+
const xmlChar *name; /* the axis name */
|
217
|
+
xmlXPathAxisFunc func; /* the search function */
|
218
|
+
};
|
219
|
+
|
220
|
+
/**
|
221
|
+
* xmlXPathFunction:
|
222
|
+
* @ctxt: the XPath interprestation context
|
223
|
+
* @nargs: the number of arguments
|
224
|
+
*
|
225
|
+
* An XPath function.
|
226
|
+
* The arguments (if any) are popped out from the context stack
|
227
|
+
* and the result is pushed on the stack.
|
228
|
+
*/
|
229
|
+
|
230
|
+
typedef void (*xmlXPathFunction) (xmlXPathParserContextPtr ctxt, int nargs);
|
231
|
+
|
232
|
+
/*
|
233
|
+
* Function and Variable Lookup.
|
234
|
+
*/
|
235
|
+
|
236
|
+
/**
|
237
|
+
* xmlXPathVariableLookupFunc:
|
238
|
+
* @ctxt: an XPath context
|
239
|
+
* @name: name of the variable
|
240
|
+
* @ns_uri: the namespace name hosting this variable
|
241
|
+
*
|
242
|
+
* Prototype for callbacks used to plug variable lookup in the XPath
|
243
|
+
* engine.
|
244
|
+
*
|
245
|
+
* Returns the XPath object value or NULL if not found.
|
246
|
+
*/
|
247
|
+
typedef xmlXPathObjectPtr (*xmlXPathVariableLookupFunc) (void *ctxt,
|
248
|
+
const xmlChar *name,
|
249
|
+
const xmlChar *ns_uri);
|
250
|
+
|
251
|
+
/**
|
252
|
+
* xmlXPathFuncLookupFunc:
|
253
|
+
* @ctxt: an XPath context
|
254
|
+
* @name: name of the function
|
255
|
+
* @ns_uri: the namespace name hosting this function
|
256
|
+
*
|
257
|
+
* Prototype for callbacks used to plug function lookup in the XPath
|
258
|
+
* engine.
|
259
|
+
*
|
260
|
+
* Returns the XPath function or NULL if not found.
|
261
|
+
*/
|
262
|
+
typedef xmlXPathFunction (*xmlXPathFuncLookupFunc) (void *ctxt,
|
263
|
+
const xmlChar *name,
|
264
|
+
const xmlChar *ns_uri);
|
265
|
+
|
266
|
+
/**
|
267
|
+
* xmlXPathFlags:
|
268
|
+
* Flags for XPath engine compilation and runtime
|
269
|
+
*/
|
270
|
+
/**
|
271
|
+
* XML_XPATH_CHECKNS:
|
272
|
+
*
|
273
|
+
* check namespaces at compilation
|
274
|
+
*/
|
275
|
+
#define XML_XPATH_CHECKNS (1<<0)
|
276
|
+
/**
|
277
|
+
* XML_XPATH_NOVAR:
|
278
|
+
*
|
279
|
+
* forbid variables in expression
|
280
|
+
*/
|
281
|
+
#define XML_XPATH_NOVAR (1<<1)
|
282
|
+
|
283
|
+
/**
|
284
|
+
* xmlXPathContext:
|
285
|
+
*
|
286
|
+
* Expression evaluation occurs with respect to a context.
|
287
|
+
* he context consists of:
|
288
|
+
* - a node (the context node)
|
289
|
+
* - a node list (the context node list)
|
290
|
+
* - a set of variable bindings
|
291
|
+
* - a function library
|
292
|
+
* - the set of namespace declarations in scope for the expression
|
293
|
+
* Following the switch to hash tables, this need to be trimmed up at
|
294
|
+
* the next binary incompatible release.
|
295
|
+
* The node may be modified when the context is passed to libxml2
|
296
|
+
* for an XPath evaluation so you may need to initialize it again
|
297
|
+
* before the next call.
|
298
|
+
*/
|
299
|
+
|
300
|
+
struct _xmlXPathContext {
|
301
|
+
lxb_dom_document_t *doc; /* The current document */
|
302
|
+
lxb_dom_node_t_ptr node; /* The current node */
|
303
|
+
|
304
|
+
int nb_variables_unused; /* unused (hash table) */
|
305
|
+
int max_variables_unused; /* unused (hash table) */
|
306
|
+
xmlHashTablePtr varHash; /* Hash table of defined variables */
|
307
|
+
|
308
|
+
int nb_types; /* number of defined types */
|
309
|
+
int max_types; /* max number of types */
|
310
|
+
xmlXPathTypePtr types; /* Array of defined types */
|
311
|
+
|
312
|
+
int nb_funcs_unused; /* unused (hash table) */
|
313
|
+
int max_funcs_unused; /* unused (hash table) */
|
314
|
+
xmlHashTablePtr funcHash; /* Hash table of defined funcs */
|
315
|
+
|
316
|
+
int nb_axis; /* number of defined axis */
|
317
|
+
int max_axis; /* max number of axis */
|
318
|
+
xmlXPathAxisPtr axis; /* Array of defined axis */
|
319
|
+
|
320
|
+
/* the namespace nodes of the context node */
|
321
|
+
xmlNsPtr *namespaces; /* Array of namespaces */
|
322
|
+
int nsNr; /* number of namespace in scope */
|
323
|
+
void *user; /* function to free */
|
324
|
+
|
325
|
+
/* extra variables */
|
326
|
+
int contextSize; /* the context size */
|
327
|
+
int proximityPosition; /* the proximity position */
|
328
|
+
|
329
|
+
/* extra stuff for XPointer */
|
330
|
+
int xptr; /* is this an XPointer context? */
|
331
|
+
lxb_dom_node_t_ptr here; /* for here() */
|
332
|
+
lxb_dom_node_t_ptr origin; /* for origin() */
|
333
|
+
|
334
|
+
/* the set of namespace declarations in scope for the expression */
|
335
|
+
xmlHashTablePtr nsHash; /* The namespaces hash table */
|
336
|
+
xmlXPathVariableLookupFunc varLookupFunc;/* variable lookup func */
|
337
|
+
void *varLookupData; /* variable lookup data */
|
338
|
+
|
339
|
+
/* Possibility to link in an extra item */
|
340
|
+
void *extra; /* needed for XSLT */
|
341
|
+
|
342
|
+
/* The function name and URI when calling a function */
|
343
|
+
const xmlChar *function;
|
344
|
+
const xmlChar *functionURI;
|
345
|
+
|
346
|
+
/* function lookup function and data */
|
347
|
+
xmlXPathFuncLookupFunc funcLookupFunc;/* function lookup func */
|
348
|
+
void *funcLookupData; /* function lookup data */
|
349
|
+
|
350
|
+
/* temporary namespace lists kept for walking the namespace axis */
|
351
|
+
xmlNsPtr *tmpNsList; /* Array of namespaces */
|
352
|
+
int tmpNsNr; /* number of namespaces in scope */
|
353
|
+
|
354
|
+
/* error reporting mechanism */
|
355
|
+
void *userData; /* user specific data block */
|
356
|
+
xmlStructuredErrorFunc error; /* the callback in case of errors */
|
357
|
+
xmlError lastError; /* the last error */
|
358
|
+
lxb_dom_node_t_ptr debugNode; /* the source node XSLT */
|
359
|
+
|
360
|
+
/* dictionary */
|
361
|
+
xmlDictPtr dict; /* dictionary if any */
|
362
|
+
|
363
|
+
int flags; /* flags to control compilation */
|
364
|
+
|
365
|
+
/* Cache for reusal of XPath objects */
|
366
|
+
void *cache;
|
367
|
+
|
368
|
+
/* Resource limits */
|
369
|
+
unsigned long opLimit;
|
370
|
+
unsigned long opCount;
|
371
|
+
int depth;
|
372
|
+
};
|
373
|
+
|
374
|
+
/*
|
375
|
+
* The structure of a compiled expression form is not public.
|
376
|
+
*/
|
377
|
+
|
378
|
+
typedef struct _xmlXPathCompExpr xmlXPathCompExpr;
|
379
|
+
typedef xmlXPathCompExpr *xmlXPathCompExprPtr;
|
380
|
+
|
381
|
+
/**
|
382
|
+
* xmlXPathParserContext:
|
383
|
+
*
|
384
|
+
* An XPath parser context. It contains pure parsing information,
|
385
|
+
* an xmlXPathContext, and the stack of objects.
|
386
|
+
*/
|
387
|
+
struct _xmlXPathParserContext {
|
388
|
+
const xmlChar *cur; /* the current char being parsed */
|
389
|
+
const xmlChar *base; /* the full expression */
|
390
|
+
|
391
|
+
int error; /* error code */
|
392
|
+
|
393
|
+
xmlXPathContextPtr context; /* the evaluation context */
|
394
|
+
xmlXPathObjectPtr value; /* the current value */
|
395
|
+
int valueNr; /* number of values stacked */
|
396
|
+
int valueMax; /* max number of values stacked */
|
397
|
+
xmlXPathObjectPtr *valueTab; /* stack of values */
|
398
|
+
|
399
|
+
xmlXPathCompExprPtr comp; /* the precompiled expression */
|
400
|
+
int xptr; /* it this an XPointer expression */
|
401
|
+
lxb_dom_node_t_ptr ancestor; /* used for walking preceding axis */
|
402
|
+
|
403
|
+
int valueFrame; /* used to limit Pop on the stack */
|
404
|
+
};
|
405
|
+
|
406
|
+
/************************************************************************
|
407
|
+
* *
|
408
|
+
* Public API *
|
409
|
+
* *
|
410
|
+
************************************************************************/
|
411
|
+
|
412
|
+
/**
|
413
|
+
* Objects and Nodesets handling
|
414
|
+
*/
|
415
|
+
|
416
|
+
XMLPUBVAR double xmlXPathNAN;
|
417
|
+
XMLPUBVAR double xmlXPathPINF;
|
418
|
+
XMLPUBVAR double xmlXPathNINF;
|
419
|
+
|
420
|
+
/* These macros may later turn into functions */
|
421
|
+
/**
|
422
|
+
* xmlXPathNodeSetGetLength:
|
423
|
+
* @ns: a node-set
|
424
|
+
*
|
425
|
+
* Implement a functionality similar to the DOM NodeList.length.
|
426
|
+
*
|
427
|
+
* Returns the number of nodes in the node-set.
|
428
|
+
*/
|
429
|
+
#define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->nodeNr : 0)
|
430
|
+
/**
|
431
|
+
* xmlXPathNodeSetItem:
|
432
|
+
* @ns: a node-set
|
433
|
+
* @index: index of a node in the set
|
434
|
+
*
|
435
|
+
* Implements a functionality similar to the DOM NodeList.item().
|
436
|
+
*
|
437
|
+
* Returns the lxb_dom_node_t_ptr at the given @index in @ns or NULL if
|
438
|
+
* @index is out of range (0 to length-1)
|
439
|
+
*/
|
440
|
+
#define xmlXPathNodeSetItem(ns, index) \
|
441
|
+
((((ns) != NULL) && \
|
442
|
+
((index) >= 0) && ((index) < (ns)->nodeNr)) ? \
|
443
|
+
(ns)->nodeTab[(index)] \
|
444
|
+
: NULL)
|
445
|
+
/**
|
446
|
+
* xmlXPathNodeSetIsEmpty:
|
447
|
+
* @ns: a node-set
|
448
|
+
*
|
449
|
+
* Checks whether @ns is empty or not.
|
450
|
+
*
|
451
|
+
* Returns %TRUE if @ns is an empty node-set.
|
452
|
+
*/
|
453
|
+
#define xmlXPathNodeSetIsEmpty(ns) \
|
454
|
+
(((ns) == NULL) || ((ns)->nodeNr == 0) || ((ns)->nodeTab == NULL))
|
455
|
+
|
456
|
+
|
457
|
+
XMLPUBFUN void XMLCALL
|
458
|
+
xmlXPathFreeObject (xmlXPathObjectPtr obj);
|
459
|
+
XMLPUBFUN xmlNodeSetPtr XMLCALL
|
460
|
+
xmlXPathNodeSetCreate (lxb_dom_node_t_ptr val);
|
461
|
+
XMLPUBFUN void XMLCALL
|
462
|
+
xmlXPathFreeNodeSetList (xmlXPathObjectPtr obj);
|
463
|
+
XMLPUBFUN void XMLCALL
|
464
|
+
xmlXPathFreeNodeSet (xmlNodeSetPtr obj);
|
465
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
466
|
+
xmlXPathObjectCopy (xmlXPathObjectPtr val);
|
467
|
+
XMLPUBFUN int XMLCALL
|
468
|
+
xmlXPathCmpNodes (lxb_dom_node_t_ptr node1,
|
469
|
+
lxb_dom_node_t_ptr node2);
|
470
|
+
/**
|
471
|
+
* Conversion functions to basic types.
|
472
|
+
*/
|
473
|
+
XMLPUBFUN int XMLCALL
|
474
|
+
xmlXPathCastNumberToBoolean (double val);
|
475
|
+
XMLPUBFUN int XMLCALL
|
476
|
+
xmlXPathCastStringToBoolean (const xmlChar * val);
|
477
|
+
XMLPUBFUN int XMLCALL
|
478
|
+
xmlXPathCastNodeSetToBoolean(xmlNodeSetPtr ns);
|
479
|
+
XMLPUBFUN int XMLCALL
|
480
|
+
xmlXPathCastToBoolean (xmlXPathObjectPtr val);
|
481
|
+
|
482
|
+
XMLPUBFUN double XMLCALL
|
483
|
+
xmlXPathCastBooleanToNumber (int val);
|
484
|
+
XMLPUBFUN double XMLCALL
|
485
|
+
xmlXPathCastStringToNumber (const xmlChar * val);
|
486
|
+
XMLPUBFUN double XMLCALL
|
487
|
+
xmlXPathCastNodeToNumber (lxb_dom_node_t_ptr node);
|
488
|
+
XMLPUBFUN double XMLCALL
|
489
|
+
xmlXPathCastNodeSetToNumber (xmlNodeSetPtr ns);
|
490
|
+
XMLPUBFUN double XMLCALL
|
491
|
+
xmlXPathCastToNumber (xmlXPathObjectPtr val);
|
492
|
+
|
493
|
+
XMLPUBFUN xmlChar * XMLCALL
|
494
|
+
xmlXPathCastBooleanToString (int val);
|
495
|
+
XMLPUBFUN xmlChar * XMLCALL
|
496
|
+
xmlXPathCastNumberToString (double val);
|
497
|
+
XMLPUBFUN xmlChar * XMLCALL
|
498
|
+
xmlXPathCastNodeToString (lxb_dom_node_t_ptr node);
|
499
|
+
XMLPUBFUN xmlChar * XMLCALL
|
500
|
+
xmlXPathCastNodeSetToString (xmlNodeSetPtr ns);
|
501
|
+
XMLPUBFUN xmlChar * XMLCALL
|
502
|
+
xmlXPathCastToString (xmlXPathObjectPtr val);
|
503
|
+
|
504
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
505
|
+
xmlXPathConvertBoolean (xmlXPathObjectPtr val);
|
506
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
507
|
+
xmlXPathConvertNumber (xmlXPathObjectPtr val);
|
508
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
509
|
+
xmlXPathConvertString (xmlXPathObjectPtr val);
|
510
|
+
|
511
|
+
/**
|
512
|
+
* Context handling.
|
513
|
+
*/
|
514
|
+
XMLPUBFUN xmlXPathContextPtr XMLCALL
|
515
|
+
xmlXPathNewContext (lxb_dom_document_t_ptr doc);
|
516
|
+
XMLPUBFUN void XMLCALL
|
517
|
+
xmlXPathFreeContext (xmlXPathContextPtr ctxt);
|
518
|
+
XMLPUBFUN int XMLCALL
|
519
|
+
xmlXPathContextSetCache(xmlXPathContextPtr ctxt,
|
520
|
+
int active,
|
521
|
+
int value,
|
522
|
+
int options);
|
523
|
+
/**
|
524
|
+
* Evaluation functions.
|
525
|
+
*/
|
526
|
+
XMLPUBFUN long XMLCALL
|
527
|
+
xmlXPathOrderDocElems (lxb_dom_document_t_ptr doc);
|
528
|
+
XMLPUBFUN int XMLCALL
|
529
|
+
xmlXPathSetContextNode (lxb_dom_node_t_ptr node,
|
530
|
+
xmlXPathContextPtr ctx);
|
531
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
532
|
+
xmlXPathNodeEval (lxb_dom_node_t_ptr node,
|
533
|
+
const xmlChar *str,
|
534
|
+
xmlXPathContextPtr ctx);
|
535
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
536
|
+
xmlXPathEval (const xmlChar *str,
|
537
|
+
xmlXPathContextPtr ctx);
|
538
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
539
|
+
xmlXPathEvalExpression (const xmlChar *str,
|
540
|
+
xmlXPathContextPtr ctxt);
|
541
|
+
XMLPUBFUN int XMLCALL
|
542
|
+
xmlXPathEvalPredicate (xmlXPathContextPtr ctxt,
|
543
|
+
xmlXPathObjectPtr res);
|
544
|
+
/**
|
545
|
+
* Separate compilation/evaluation entry points.
|
546
|
+
*/
|
547
|
+
XMLPUBFUN xmlXPathCompExprPtr XMLCALL
|
548
|
+
xmlXPathCompile (const xmlChar *str);
|
549
|
+
XMLPUBFUN xmlXPathCompExprPtr XMLCALL
|
550
|
+
xmlXPathCtxtCompile (xmlXPathContextPtr ctxt,
|
551
|
+
const xmlChar *str);
|
552
|
+
XMLPUBFUN xmlXPathObjectPtr XMLCALL
|
553
|
+
xmlXPathCompiledEval (xmlXPathCompExprPtr comp,
|
554
|
+
xmlXPathContextPtr ctx);
|
555
|
+
XMLPUBFUN int XMLCALL
|
556
|
+
xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp,
|
557
|
+
xmlXPathContextPtr ctxt);
|
558
|
+
XMLPUBFUN void XMLCALL
|
559
|
+
xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp);
|
560
|
+
#endif /* LIBXML_XPATH_ENABLED */
|
561
|
+
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
|
562
|
+
XML_DEPRECATED
|
563
|
+
XMLPUBFUN void XMLCALL
|
564
|
+
xmlXPathInit (void);
|
565
|
+
XMLPUBFUN int XMLCALL
|
566
|
+
xmlXPathIsNaN (double val);
|
567
|
+
XMLPUBFUN int XMLCALL
|
568
|
+
xmlXPathIsInf (double val);
|
569
|
+
|
570
|
+
#ifdef __cplusplus
|
571
|
+
}
|
572
|
+
#endif
|
573
|
+
|
574
|
+
#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED*/
|
575
|
+
#endif /* ! __XML_XPATH_H__ */
|