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,278 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018-2020 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#include "lexbor/css/syntax/tokenizer.h"
|
8
|
+
#include "lexbor/css/syntax/tokenizer/error.h"
|
9
|
+
#include "lexbor/css/syntax/state.h"
|
10
|
+
#include "lexbor/css/syntax/state_res.h"
|
11
|
+
|
12
|
+
#include "lexbor/core/array.h"
|
13
|
+
|
14
|
+
|
15
|
+
const lxb_char_t *lxb_css_syntax_tokenizer_eof = (const lxb_char_t *) "\x00";
|
16
|
+
|
17
|
+
|
18
|
+
static lxb_status_t
|
19
|
+
lxb_css_syntax_tokenizer_blank(lxb_css_syntax_tokenizer_t *tkz,
|
20
|
+
const lxb_char_t **data, const lxb_char_t **end,
|
21
|
+
void *ctx);
|
22
|
+
|
23
|
+
lxb_status_t
|
24
|
+
lxb_css_syntax_tokenizer_next_chunk(lxb_css_syntax_tokenizer_t *tkz,
|
25
|
+
const lxb_char_t **data, const lxb_char_t **end);
|
26
|
+
|
27
|
+
lxb_status_t
|
28
|
+
lxb_css_syntax_state_tokens_realloc(lxb_css_syntax_tokenizer_t *tkz);
|
29
|
+
|
30
|
+
|
31
|
+
lxb_css_syntax_tokenizer_t *
|
32
|
+
lxb_css_syntax_tokenizer_create(void)
|
33
|
+
{
|
34
|
+
return lexbor_calloc(1, sizeof(lxb_css_syntax_tokenizer_t));
|
35
|
+
}
|
36
|
+
|
37
|
+
lxb_status_t
|
38
|
+
lxb_css_syntax_tokenizer_init(lxb_css_syntax_tokenizer_t *tkz)
|
39
|
+
{
|
40
|
+
lxb_status_t status;
|
41
|
+
|
42
|
+
static const unsigned tmp_size = 1024;
|
43
|
+
static const unsigned tokens_length = 64;
|
44
|
+
|
45
|
+
if (tkz == NULL) {
|
46
|
+
return LXB_STATUS_ERROR_OBJECT_IS_NULL;
|
47
|
+
}
|
48
|
+
|
49
|
+
/* Init list for tokens. */
|
50
|
+
tkz->tokens_begin = lexbor_calloc(tokens_length,
|
51
|
+
sizeof(lxb_css_syntax_token_t));
|
52
|
+
if (tkz->tokens_begin == NULL) {
|
53
|
+
return LXB_STATUS_ERROR_MEMORY_ALLOCATION;
|
54
|
+
}
|
55
|
+
|
56
|
+
tkz->tokens_end = tkz->tokens_begin + tokens_length;
|
57
|
+
|
58
|
+
tkz->token = tkz->tokens_begin;
|
59
|
+
tkz->last = tkz->token;
|
60
|
+
tkz->prepared = NULL;
|
61
|
+
|
62
|
+
tkz->mraw = lexbor_mraw_create();
|
63
|
+
status = lexbor_mraw_init(tkz->mraw, 4096);
|
64
|
+
if (status != LXB_STATUS_OK) {
|
65
|
+
return status;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* Temp */
|
69
|
+
tkz->start = lexbor_malloc(tmp_size);
|
70
|
+
if (tkz->start == NULL) {
|
71
|
+
return LXB_STATUS_ERROR_MEMORY_ALLOCATION;
|
72
|
+
}
|
73
|
+
|
74
|
+
tkz->pos = tkz->start;
|
75
|
+
tkz->end = tkz->start + tmp_size;
|
76
|
+
|
77
|
+
/* Parse errors */
|
78
|
+
tkz->parse_errors = lexbor_array_obj_create();
|
79
|
+
status = lexbor_array_obj_init(tkz->parse_errors, 16,
|
80
|
+
sizeof(lxb_css_syntax_tokenizer_error_t));
|
81
|
+
if (status != LXB_STATUS_OK) {
|
82
|
+
return status;
|
83
|
+
}
|
84
|
+
|
85
|
+
tkz->eof = false;
|
86
|
+
tkz->with_comment = false;
|
87
|
+
tkz->status = LXB_STATUS_OK;
|
88
|
+
tkz->opt = LXB_CSS_SYNTAX_TOKENIZER_OPT_UNDEF;
|
89
|
+
tkz->chunk_cb = lxb_css_syntax_tokenizer_blank;
|
90
|
+
|
91
|
+
return LXB_STATUS_OK;
|
92
|
+
}
|
93
|
+
|
94
|
+
lxb_status_t
|
95
|
+
lxb_css_syntax_tokenizer_clean(lxb_css_syntax_tokenizer_t *tkz)
|
96
|
+
{
|
97
|
+
lexbor_mraw_clean(tkz->mraw);
|
98
|
+
lexbor_array_obj_clean(tkz->parse_errors);
|
99
|
+
|
100
|
+
tkz->token = tkz->tokens_begin;
|
101
|
+
tkz->last = tkz->token;
|
102
|
+
tkz->prepared = NULL;
|
103
|
+
|
104
|
+
tkz->eof = false;
|
105
|
+
tkz->status = LXB_STATUS_OK;
|
106
|
+
tkz->in_begin = NULL;
|
107
|
+
tkz->in_end = NULL;
|
108
|
+
tkz->pos = tkz->start;
|
109
|
+
|
110
|
+
return LXB_STATUS_OK;
|
111
|
+
}
|
112
|
+
|
113
|
+
lxb_css_syntax_tokenizer_t *
|
114
|
+
lxb_css_syntax_tokenizer_destroy(lxb_css_syntax_tokenizer_t *tkz)
|
115
|
+
{
|
116
|
+
if (tkz == NULL) {
|
117
|
+
return NULL;
|
118
|
+
}
|
119
|
+
|
120
|
+
if (tkz->tokens_begin != NULL) {
|
121
|
+
tkz->tokens_begin = lexbor_free(tkz->tokens_begin);
|
122
|
+
tkz->tokens_end = NULL;
|
123
|
+
}
|
124
|
+
|
125
|
+
tkz->mraw = lexbor_mraw_destroy(tkz->mraw, true);
|
126
|
+
tkz->parse_errors = lexbor_array_obj_destroy(tkz->parse_errors, true);
|
127
|
+
|
128
|
+
if (tkz->start != NULL) {
|
129
|
+
tkz->start = lexbor_free(tkz->start);
|
130
|
+
}
|
131
|
+
|
132
|
+
return lexbor_free(tkz);
|
133
|
+
}
|
134
|
+
|
135
|
+
static lxb_status_t
|
136
|
+
lxb_css_syntax_tokenizer_blank(lxb_css_syntax_tokenizer_t *tkz,
|
137
|
+
const lxb_char_t **data, const lxb_char_t **end,
|
138
|
+
void *ctx)
|
139
|
+
{
|
140
|
+
return LXB_STATUS_OK;
|
141
|
+
}
|
142
|
+
|
143
|
+
lxb_status_t
|
144
|
+
lxb_css_syntax_tokenizer_chunk(lxb_css_syntax_tokenizer_t *tkz,
|
145
|
+
const lxb_char_t *data, size_t size)
|
146
|
+
{
|
147
|
+
return tkz->status;
|
148
|
+
}
|
149
|
+
|
150
|
+
lxb_css_syntax_token_t *
|
151
|
+
lxb_css_syntax_tokenizer_token(lxb_css_syntax_tokenizer_t *tkz)
|
152
|
+
{
|
153
|
+
lxb_status_t status;
|
154
|
+
lxb_css_syntax_token_t *token;
|
155
|
+
const lxb_char_t *begin, *end;
|
156
|
+
|
157
|
+
begin = tkz->in_begin;
|
158
|
+
end = tkz->in_end;
|
159
|
+
|
160
|
+
if (tkz->prepared != NULL) {
|
161
|
+
token = tkz->prepared++;
|
162
|
+
|
163
|
+
if (tkz->prepared >= tkz->last) {
|
164
|
+
tkz->prepared = NULL;
|
165
|
+
}
|
166
|
+
|
167
|
+
if (lxb_css_syntax_token_base(token)->end != NULL) {
|
168
|
+
return token;
|
169
|
+
}
|
170
|
+
|
171
|
+
if (begin >= end) {
|
172
|
+
status = lxb_css_syntax_tokenizer_next_chunk(tkz, &begin, &end);
|
173
|
+
if (status != LXB_STATUS_OK) {
|
174
|
+
return NULL;
|
175
|
+
}
|
176
|
+
|
177
|
+
if (begin >= end) {
|
178
|
+
goto done;
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
if (lxb_css_syntax_token_delim(token)->character == '-') {
|
183
|
+
begin = lxb_css_syntax_state_minus_process(tkz, token, begin, end);
|
184
|
+
}
|
185
|
+
else {
|
186
|
+
begin = lxb_css_syntax_state_plus_process(tkz, token, begin, end);
|
187
|
+
}
|
188
|
+
|
189
|
+
goto done;
|
190
|
+
}
|
191
|
+
|
192
|
+
if (tkz->last >= tkz->tokens_end) {
|
193
|
+
tkz->status = lxb_css_syntax_state_tokens_realloc(tkz);
|
194
|
+
if (tkz->status != LXB_STATUS_OK) {
|
195
|
+
return NULL;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
token = tkz->last++;
|
200
|
+
|
201
|
+
again:
|
202
|
+
|
203
|
+
if (begin >= end) {
|
204
|
+
status = lxb_css_syntax_tokenizer_next_chunk(tkz, &begin, &end);
|
205
|
+
if (status != LXB_STATUS_OK) {
|
206
|
+
return NULL;
|
207
|
+
}
|
208
|
+
|
209
|
+
if (begin >= end) {
|
210
|
+
token->type = LXB_CSS_SYNTAX_TOKEN__EOF;
|
211
|
+
|
212
|
+
lxb_css_syntax_token_base(token)->begin = begin;
|
213
|
+
lxb_css_syntax_token_base(token)->end = end;
|
214
|
+
|
215
|
+
return token;
|
216
|
+
}
|
217
|
+
}
|
218
|
+
|
219
|
+
token->cloned = false;
|
220
|
+
|
221
|
+
begin = lxb_css_syntax_state_res_map[*begin](tkz, token, begin, end);
|
222
|
+
|
223
|
+
done:
|
224
|
+
|
225
|
+
if (begin == NULL) {
|
226
|
+
return NULL;
|
227
|
+
}
|
228
|
+
|
229
|
+
tkz->in_begin = begin;
|
230
|
+
|
231
|
+
if (token->type == LXB_CSS_SYNTAX_TOKEN_COMMENT && tkz->with_comment) {
|
232
|
+
end = tkz->in_end;
|
233
|
+
goto again;
|
234
|
+
}
|
235
|
+
|
236
|
+
return token;
|
237
|
+
}
|
238
|
+
|
239
|
+
lxb_status_t
|
240
|
+
lxb_css_syntax_tokenizer_next_chunk(lxb_css_syntax_tokenizer_t *tkz,
|
241
|
+
const lxb_char_t **data, const lxb_char_t **end)
|
242
|
+
{
|
243
|
+
const lxb_char_t *begin;
|
244
|
+
|
245
|
+
if (tkz->eof == false) {
|
246
|
+
begin = *data;
|
247
|
+
|
248
|
+
tkz->status = tkz->chunk_cb(tkz, data, end, tkz->chunk_ctx);
|
249
|
+
if (tkz->status != LXB_STATUS_OK) {
|
250
|
+
return tkz->status;
|
251
|
+
}
|
252
|
+
|
253
|
+
if (*data >= *end) {
|
254
|
+
*data = begin;
|
255
|
+
*end = begin;
|
256
|
+
|
257
|
+
tkz->in_begin = begin;
|
258
|
+
tkz->in_end = begin;
|
259
|
+
|
260
|
+
tkz->eof = true;
|
261
|
+
}
|
262
|
+
else {
|
263
|
+
tkz->in_begin = *data;
|
264
|
+
tkz->in_end = *end;
|
265
|
+
}
|
266
|
+
}
|
267
|
+
|
268
|
+
return LXB_STATUS_OK;
|
269
|
+
}
|
270
|
+
|
271
|
+
/*
|
272
|
+
* No inline functions for ABI.
|
273
|
+
*/
|
274
|
+
lxb_status_t
|
275
|
+
lxb_css_syntax_tokenizer_status_noi(lxb_css_syntax_tokenizer_t *tkz)
|
276
|
+
{
|
277
|
+
return lxb_css_syntax_tokenizer_status(tkz);
|
278
|
+
}
|
@@ -0,0 +1,121 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018-2020 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LEXBOR_CSS_SYNTAX_TOKENIZER_H
|
8
|
+
#define LEXBOR_CSS_SYNTAX_TOKENIZER_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#include "lexbor/core/array_obj.h"
|
15
|
+
|
16
|
+
#include "lexbor/css/syntax/base.h"
|
17
|
+
#include "lexbor/css/syntax/token.h"
|
18
|
+
|
19
|
+
|
20
|
+
/* State */
|
21
|
+
typedef const lxb_char_t *
|
22
|
+
(*lxb_css_syntax_tokenizer_state_f)(lxb_css_syntax_tokenizer_t *tkz,
|
23
|
+
lxb_css_syntax_token_t *token,
|
24
|
+
const lxb_char_t *data, const lxb_char_t *end);
|
25
|
+
|
26
|
+
typedef lxb_status_t
|
27
|
+
(*lxb_css_syntax_tokenizer_chunk_f)(lxb_css_syntax_tokenizer_t *tkz,
|
28
|
+
const lxb_char_t **data,
|
29
|
+
const lxb_char_t **end, void *ctx);
|
30
|
+
|
31
|
+
|
32
|
+
enum lxb_css_syntax_tokenizer_opt {
|
33
|
+
LXB_CSS_SYNTAX_TOKENIZER_OPT_UNDEF = 0x00,
|
34
|
+
};
|
35
|
+
|
36
|
+
struct lxb_css_syntax_tokenizer {
|
37
|
+
/* Current process token */
|
38
|
+
lxb_css_syntax_token_t *token;
|
39
|
+
lxb_css_syntax_token_t *last;
|
40
|
+
lxb_css_syntax_token_t *prepared;
|
41
|
+
|
42
|
+
lxb_css_syntax_token_t *tokens_begin;
|
43
|
+
lxb_css_syntax_token_t *tokens_end;
|
44
|
+
|
45
|
+
lexbor_array_obj_t *parse_errors;
|
46
|
+
|
47
|
+
const lxb_char_t *in_begin;
|
48
|
+
const lxb_char_t *in_end;
|
49
|
+
|
50
|
+
lexbor_mraw_t *mraw;
|
51
|
+
|
52
|
+
lxb_css_syntax_tokenizer_chunk_f chunk_cb;
|
53
|
+
void *chunk_ctx;
|
54
|
+
|
55
|
+
/* Temp */
|
56
|
+
lxb_char_t *start;
|
57
|
+
lxb_char_t *pos;
|
58
|
+
const lxb_char_t *end;
|
59
|
+
lxb_char_t buffer[128];
|
60
|
+
lxb_css_syntax_token_data_t token_data;
|
61
|
+
|
62
|
+
/* Process */
|
63
|
+
unsigned int opt; /* bitmap */
|
64
|
+
lxb_status_t status;
|
65
|
+
bool eof;
|
66
|
+
bool with_comment;
|
67
|
+
};
|
68
|
+
|
69
|
+
|
70
|
+
LXB_API lxb_css_syntax_tokenizer_t *
|
71
|
+
lxb_css_syntax_tokenizer_create(void);
|
72
|
+
|
73
|
+
LXB_API lxb_status_t
|
74
|
+
lxb_css_syntax_tokenizer_init(lxb_css_syntax_tokenizer_t *tkz);
|
75
|
+
|
76
|
+
LXB_API lxb_status_t
|
77
|
+
lxb_css_syntax_tokenizer_clean(lxb_css_syntax_tokenizer_t *tkz);
|
78
|
+
|
79
|
+
LXB_API lxb_css_syntax_tokenizer_t *
|
80
|
+
lxb_css_syntax_tokenizer_destroy(lxb_css_syntax_tokenizer_t *tkz);
|
81
|
+
|
82
|
+
|
83
|
+
/*
|
84
|
+
* Inline functions
|
85
|
+
*/
|
86
|
+
lxb_inline lxb_status_t
|
87
|
+
lxb_css_syntax_tokenizer_status(lxb_css_syntax_tokenizer_t *tkz)
|
88
|
+
{
|
89
|
+
return tkz->status;
|
90
|
+
}
|
91
|
+
|
92
|
+
lxb_inline void
|
93
|
+
lxb_css_syntax_tokenizer_chunk_cb_set(lxb_css_syntax_tokenizer_t *tkz,
|
94
|
+
lxb_css_syntax_tokenizer_chunk_f cb,
|
95
|
+
void *ctx)
|
96
|
+
{
|
97
|
+
tkz->chunk_cb = cb;
|
98
|
+
tkz->chunk_ctx = ctx;
|
99
|
+
}
|
100
|
+
|
101
|
+
lxb_inline void
|
102
|
+
lxb_css_syntax_tokenizer_buffer_set(lxb_css_syntax_tokenizer_t *tkz,
|
103
|
+
const lxb_char_t *data, size_t size)
|
104
|
+
{
|
105
|
+
tkz->in_begin = data;
|
106
|
+
tkz->in_end = data + size;
|
107
|
+
}
|
108
|
+
|
109
|
+
|
110
|
+
/*
|
111
|
+
* No inline functions for ABI.
|
112
|
+
*/
|
113
|
+
LXB_API lxb_status_t
|
114
|
+
lxb_css_syntax_tokenizer_status_noi(lxb_css_syntax_tokenizer_t *tkz);
|
115
|
+
|
116
|
+
|
117
|
+
#ifdef __cplusplus
|
118
|
+
} /* extern "C" */
|
119
|
+
#endif
|
120
|
+
|
121
|
+
#endif /* LEXBOR_CSS_SYNTAX_TOKENIZER_H */
|
@@ -0,0 +1,32 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2019-2021 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LEXBOR_DOM_BASE_H
|
8
|
+
#define LEXBOR_DOM_BASE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
|
15
|
+
#include "lexbor/core/base.h"
|
16
|
+
|
17
|
+
|
18
|
+
#define LXB_DOM_VERSION_MAJOR 1
|
19
|
+
#define LXB_DOM_VERSION_MINOR 4
|
20
|
+
#define LXB_DOM_VERSION_PATCH 0
|
21
|
+
|
22
|
+
#define LXB_DOM_VERSION_STRING \
|
23
|
+
LEXBOR_STRINGIZE(LXB_DOM_VERSION_MAJOR) "." \
|
24
|
+
LEXBOR_STRINGIZE(LXB_DOM_VERSION_MINOR) "." \
|
25
|
+
LEXBOR_STRINGIZE(LXB_DOM_VERSION_PATCH)
|
26
|
+
|
27
|
+
|
28
|
+
#ifdef __cplusplus
|
29
|
+
} /* extern "C" */
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#endif /* LEXBOR_DOM_BASE_H */
|
@@ -0,0 +1,97 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018-2022 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#include "lexbor/dom/collection.h"
|
8
|
+
#include "lexbor/dom/interfaces/document.h"
|
9
|
+
|
10
|
+
|
11
|
+
lxb_dom_collection_t *
|
12
|
+
lxb_dom_collection_create(lxb_dom_document_t *document)
|
13
|
+
{
|
14
|
+
lxb_dom_collection_t *col;
|
15
|
+
|
16
|
+
col = lexbor_calloc(1, sizeof(lxb_dom_collection_t));
|
17
|
+
if (col == NULL) {
|
18
|
+
return NULL;
|
19
|
+
}
|
20
|
+
|
21
|
+
col->document = document;
|
22
|
+
|
23
|
+
return col;
|
24
|
+
}
|
25
|
+
|
26
|
+
lxb_status_t
|
27
|
+
lxb_dom_collection_init(lxb_dom_collection_t *col, size_t start_list_size)
|
28
|
+
{
|
29
|
+
if (col == NULL) {
|
30
|
+
return LXB_STATUS_ERROR_WRONG_ARGS;
|
31
|
+
}
|
32
|
+
|
33
|
+
if (col->document == NULL) {
|
34
|
+
return LXB_STATUS_ERROR_INCOMPLETE_OBJECT;
|
35
|
+
}
|
36
|
+
|
37
|
+
return lexbor_array_init(&col->array, start_list_size);
|
38
|
+
}
|
39
|
+
|
40
|
+
lxb_dom_collection_t *
|
41
|
+
lxb_dom_collection_destroy(lxb_dom_collection_t *col, bool self_destroy)
|
42
|
+
{
|
43
|
+
if (col == NULL) {
|
44
|
+
return NULL;
|
45
|
+
}
|
46
|
+
|
47
|
+
if (col->array.list != NULL) {
|
48
|
+
lexbor_array_destroy(&col->array, false);
|
49
|
+
|
50
|
+
col->array.list = NULL;
|
51
|
+
}
|
52
|
+
|
53
|
+
if (self_destroy) {
|
54
|
+
return lexbor_free(col);
|
55
|
+
}
|
56
|
+
|
57
|
+
return col;
|
58
|
+
}
|
59
|
+
|
60
|
+
/*
|
61
|
+
* No inline functions for ABI.
|
62
|
+
*/
|
63
|
+
lxb_dom_collection_t *
|
64
|
+
lxb_dom_collection_make_noi(lxb_dom_document_t *document, size_t start_list_size)
|
65
|
+
{
|
66
|
+
return lxb_dom_collection_make(document, start_list_size);
|
67
|
+
}
|
68
|
+
|
69
|
+
void
|
70
|
+
lxb_dom_collection_clean_noi(lxb_dom_collection_t *col)
|
71
|
+
{
|
72
|
+
lxb_dom_collection_clean(col);
|
73
|
+
}
|
74
|
+
|
75
|
+
lxb_status_t
|
76
|
+
lxb_dom_collection_append_noi(lxb_dom_collection_t *col, void *value)
|
77
|
+
{
|
78
|
+
return lxb_dom_collection_append(col, value);
|
79
|
+
}
|
80
|
+
|
81
|
+
lxb_dom_element_t *
|
82
|
+
lxb_dom_collection_element_noi(lxb_dom_collection_t *col, size_t idx)
|
83
|
+
{
|
84
|
+
return lxb_dom_collection_element(col, idx);
|
85
|
+
}
|
86
|
+
|
87
|
+
lxb_dom_node_t *
|
88
|
+
lxb_dom_collection_node_noi(lxb_dom_collection_t *col, size_t idx)
|
89
|
+
{
|
90
|
+
return lxb_dom_collection_node(col, idx);
|
91
|
+
}
|
92
|
+
|
93
|
+
size_t
|
94
|
+
lxb_dom_collection_length_noi(lxb_dom_collection_t *col)
|
95
|
+
{
|
96
|
+
return lxb_dom_collection_length(col);
|
97
|
+
}
|
@@ -0,0 +1,112 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LEXBOR_DOM_COLLECTION_H
|
8
|
+
#define LEXBOR_DOM_COLLECTION_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#include "lexbor/core/base.h"
|
15
|
+
#include "lexbor/core/array.h"
|
16
|
+
|
17
|
+
#include "lexbor/dom/interface.h"
|
18
|
+
|
19
|
+
|
20
|
+
typedef struct {
|
21
|
+
lexbor_array_t array;
|
22
|
+
lxb_dom_document_t *document;
|
23
|
+
}
|
24
|
+
lxb_dom_collection_t;
|
25
|
+
|
26
|
+
|
27
|
+
LXB_API lxb_dom_collection_t *
|
28
|
+
lxb_dom_collection_create(lxb_dom_document_t *document);
|
29
|
+
|
30
|
+
LXB_API lxb_status_t
|
31
|
+
lxb_dom_collection_init(lxb_dom_collection_t *col, size_t start_list_size);
|
32
|
+
|
33
|
+
LXB_API lxb_dom_collection_t *
|
34
|
+
lxb_dom_collection_destroy(lxb_dom_collection_t *col, bool self_destroy);
|
35
|
+
|
36
|
+
|
37
|
+
/*
|
38
|
+
* Inline functions
|
39
|
+
*/
|
40
|
+
lxb_inline lxb_dom_collection_t *
|
41
|
+
lxb_dom_collection_make(lxb_dom_document_t *document, size_t start_list_size)
|
42
|
+
{
|
43
|
+
lxb_status_t status;
|
44
|
+
lxb_dom_collection_t *col;
|
45
|
+
|
46
|
+
col = lxb_dom_collection_create(document);
|
47
|
+
status = lxb_dom_collection_init(col, start_list_size);
|
48
|
+
|
49
|
+
if(status != LXB_STATUS_OK) {
|
50
|
+
return lxb_dom_collection_destroy(col, true);
|
51
|
+
}
|
52
|
+
|
53
|
+
return col;
|
54
|
+
}
|
55
|
+
|
56
|
+
lxb_inline void
|
57
|
+
lxb_dom_collection_clean(lxb_dom_collection_t *col)
|
58
|
+
{
|
59
|
+
lexbor_array_clean(&col->array);
|
60
|
+
}
|
61
|
+
|
62
|
+
lxb_inline lxb_status_t
|
63
|
+
lxb_dom_collection_append(lxb_dom_collection_t *col, void *value)
|
64
|
+
{
|
65
|
+
return lexbor_array_push(&col->array, value);
|
66
|
+
}
|
67
|
+
|
68
|
+
lxb_inline lxb_dom_element_t *
|
69
|
+
lxb_dom_collection_element(lxb_dom_collection_t *col, size_t idx)
|
70
|
+
{
|
71
|
+
return (lxb_dom_element_t *) lexbor_array_get(&col->array, idx);
|
72
|
+
}
|
73
|
+
|
74
|
+
lxb_inline lxb_dom_node_t *
|
75
|
+
lxb_dom_collection_node(lxb_dom_collection_t *col, size_t idx)
|
76
|
+
{
|
77
|
+
return (lxb_dom_node_t *) lexbor_array_get(&col->array, idx);
|
78
|
+
}
|
79
|
+
|
80
|
+
lxb_inline size_t
|
81
|
+
lxb_dom_collection_length(lxb_dom_collection_t *col)
|
82
|
+
{
|
83
|
+
return lexbor_array_length(&col->array);
|
84
|
+
}
|
85
|
+
|
86
|
+
/*
|
87
|
+
* No inline functions for ABI.
|
88
|
+
*/
|
89
|
+
LXB_API lxb_dom_collection_t *
|
90
|
+
lxb_dom_collection_make_noi(lxb_dom_document_t *document, size_t start_list_size);
|
91
|
+
|
92
|
+
LXB_API void
|
93
|
+
lxb_dom_collection_clean_noi(lxb_dom_collection_t *col);
|
94
|
+
|
95
|
+
LXB_API lxb_status_t
|
96
|
+
lxb_dom_collection_append_noi(lxb_dom_collection_t *col, void *value);
|
97
|
+
|
98
|
+
LXB_API lxb_dom_element_t *
|
99
|
+
lxb_dom_collection_element_noi(lxb_dom_collection_t *col, size_t idx);
|
100
|
+
|
101
|
+
LXB_API lxb_dom_node_t *
|
102
|
+
lxb_dom_collection_node_noi(lxb_dom_collection_t *col, size_t idx);
|
103
|
+
|
104
|
+
LXB_API size_t
|
105
|
+
lxb_dom_collection_length_noi(lxb_dom_collection_t *col);
|
106
|
+
|
107
|
+
|
108
|
+
#ifdef __cplusplus
|
109
|
+
} /* extern "C" */
|
110
|
+
#endif
|
111
|
+
|
112
|
+
#endif /* LEXBOR_DOM_COLLECTION_H */
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2020 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LXB_DOM_H
|
8
|
+
#define LXB_DOM_H
|
9
|
+
|
10
|
+
#include "lexbor/dom/base.h"
|
11
|
+
#include "lexbor/dom/interface.h"
|
12
|
+
#include "lexbor/dom/collection.h"
|
13
|
+
#include "lexbor/dom/exception.h"
|
14
|
+
#include "lexbor/dom/interfaces/shadow_root.h"
|
15
|
+
#include "lexbor/dom/interfaces/attr.h"
|
16
|
+
#include "lexbor/dom/interfaces/cdata_section.h"
|
17
|
+
#include "lexbor/dom/interfaces/text.h"
|
18
|
+
#include "lexbor/dom/interfaces/event_target.h"
|
19
|
+
#include "lexbor/dom/interfaces/comment.h"
|
20
|
+
#include "lexbor/dom/interfaces/attr_const.h"
|
21
|
+
#include "lexbor/dom/interfaces/node.h"
|
22
|
+
#include "lexbor/dom/interfaces/document_type.h"
|
23
|
+
#include "lexbor/dom/interfaces/element.h"
|
24
|
+
#include "lexbor/dom/interfaces/document_fragment.h"
|
25
|
+
#include "lexbor/dom/interfaces/document.h"
|
26
|
+
#include "lexbor/dom/interfaces/character_data.h"
|
27
|
+
#include "lexbor/dom/interfaces/processing_instruction.h"
|
28
|
+
|
29
|
+
#endif /* LXB_DOM_H */
|
@@ -0,0 +1,18 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#include "lexbor/dom/exception.h"
|
8
|
+
|
9
|
+
|
10
|
+
/*
|
11
|
+
* No inline functions for ABI.
|
12
|
+
*/
|
13
|
+
void *
|
14
|
+
lxb_dom_exception_code_ref_set_noi(lxb_dom_exception_code_t *var,
|
15
|
+
lxb_dom_exception_code_t code)
|
16
|
+
{
|
17
|
+
return lxb_dom_exception_code_ref_set(var, code);
|
18
|
+
}
|