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,153 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) Alexander Borisov
|
3
|
+
*
|
4
|
+
* Based on nxt_diyfp.c from NGINX NJS project
|
5
|
+
*
|
6
|
+
* Copyright (C) Dmitry Volyntsev
|
7
|
+
* Copyright (C) NGINX, Inc.
|
8
|
+
*
|
9
|
+
* An internal diy_fp implementation.
|
10
|
+
* For details, see Loitsch, Florian. "Printing floating-point numbers quickly
|
11
|
+
* and accurately with integers." ACM Sigplan Notices 45.6 (2010): 233-243.
|
12
|
+
*/
|
13
|
+
|
14
|
+
#include "lexbor/core/diyfp.h"
|
15
|
+
|
16
|
+
|
17
|
+
typedef struct {
|
18
|
+
uint64_t significand;
|
19
|
+
int16_t bin_exp;
|
20
|
+
int16_t dec_exp;
|
21
|
+
}
|
22
|
+
lexbor_diyfp_cpe_t;
|
23
|
+
|
24
|
+
|
25
|
+
static const lexbor_diyfp_cpe_t lexbor_cached_powers[] = {
|
26
|
+
{ lexbor_uint64_hl(0xfa8fd5a0, 0x081c0288), -1220, -348 },
|
27
|
+
{ lexbor_uint64_hl(0xbaaee17f, 0xa23ebf76), -1193, -340 },
|
28
|
+
{ lexbor_uint64_hl(0x8b16fb20, 0x3055ac76), -1166, -332 },
|
29
|
+
{ lexbor_uint64_hl(0xcf42894a, 0x5dce35ea), -1140, -324 },
|
30
|
+
{ lexbor_uint64_hl(0x9a6bb0aa, 0x55653b2d), -1113, -316 },
|
31
|
+
{ lexbor_uint64_hl(0xe61acf03, 0x3d1a45df), -1087, -308 },
|
32
|
+
{ lexbor_uint64_hl(0xab70fe17, 0xc79ac6ca), -1060, -300 },
|
33
|
+
{ lexbor_uint64_hl(0xff77b1fc, 0xbebcdc4f), -1034, -292 },
|
34
|
+
{ lexbor_uint64_hl(0xbe5691ef, 0x416bd60c), -1007, -284 },
|
35
|
+
{ lexbor_uint64_hl(0x8dd01fad, 0x907ffc3c), -980, -276 },
|
36
|
+
{ lexbor_uint64_hl(0xd3515c28, 0x31559a83), -954, -268 },
|
37
|
+
{ lexbor_uint64_hl(0x9d71ac8f, 0xada6c9b5), -927, -260 },
|
38
|
+
{ lexbor_uint64_hl(0xea9c2277, 0x23ee8bcb), -901, -252 },
|
39
|
+
{ lexbor_uint64_hl(0xaecc4991, 0x4078536d), -874, -244 },
|
40
|
+
{ lexbor_uint64_hl(0x823c1279, 0x5db6ce57), -847, -236 },
|
41
|
+
{ lexbor_uint64_hl(0xc2109436, 0x4dfb5637), -821, -228 },
|
42
|
+
{ lexbor_uint64_hl(0x9096ea6f, 0x3848984f), -794, -220 },
|
43
|
+
{ lexbor_uint64_hl(0xd77485cb, 0x25823ac7), -768, -212 },
|
44
|
+
{ lexbor_uint64_hl(0xa086cfcd, 0x97bf97f4), -741, -204 },
|
45
|
+
{ lexbor_uint64_hl(0xef340a98, 0x172aace5), -715, -196 },
|
46
|
+
{ lexbor_uint64_hl(0xb23867fb, 0x2a35b28e), -688, -188 },
|
47
|
+
{ lexbor_uint64_hl(0x84c8d4df, 0xd2c63f3b), -661, -180 },
|
48
|
+
{ lexbor_uint64_hl(0xc5dd4427, 0x1ad3cdba), -635, -172 },
|
49
|
+
{ lexbor_uint64_hl(0x936b9fce, 0xbb25c996), -608, -164 },
|
50
|
+
{ lexbor_uint64_hl(0xdbac6c24, 0x7d62a584), -582, -156 },
|
51
|
+
{ lexbor_uint64_hl(0xa3ab6658, 0x0d5fdaf6), -555, -148 },
|
52
|
+
{ lexbor_uint64_hl(0xf3e2f893, 0xdec3f126), -529, -140 },
|
53
|
+
{ lexbor_uint64_hl(0xb5b5ada8, 0xaaff80b8), -502, -132 },
|
54
|
+
{ lexbor_uint64_hl(0x87625f05, 0x6c7c4a8b), -475, -124 },
|
55
|
+
{ lexbor_uint64_hl(0xc9bcff60, 0x34c13053), -449, -116 },
|
56
|
+
{ lexbor_uint64_hl(0x964e858c, 0x91ba2655), -422, -108 },
|
57
|
+
{ lexbor_uint64_hl(0xdff97724, 0x70297ebd), -396, -100 },
|
58
|
+
{ lexbor_uint64_hl(0xa6dfbd9f, 0xb8e5b88f), -369, -92 },
|
59
|
+
{ lexbor_uint64_hl(0xf8a95fcf, 0x88747d94), -343, -84 },
|
60
|
+
{ lexbor_uint64_hl(0xb9447093, 0x8fa89bcf), -316, -76 },
|
61
|
+
{ lexbor_uint64_hl(0x8a08f0f8, 0xbf0f156b), -289, -68 },
|
62
|
+
{ lexbor_uint64_hl(0xcdb02555, 0x653131b6), -263, -60 },
|
63
|
+
{ lexbor_uint64_hl(0x993fe2c6, 0xd07b7fac), -236, -52 },
|
64
|
+
{ lexbor_uint64_hl(0xe45c10c4, 0x2a2b3b06), -210, -44 },
|
65
|
+
{ lexbor_uint64_hl(0xaa242499, 0x697392d3), -183, -36 },
|
66
|
+
{ lexbor_uint64_hl(0xfd87b5f2, 0x8300ca0e), -157, -28 },
|
67
|
+
{ lexbor_uint64_hl(0xbce50864, 0x92111aeb), -130, -20 },
|
68
|
+
{ lexbor_uint64_hl(0x8cbccc09, 0x6f5088cc), -103, -12 },
|
69
|
+
{ lexbor_uint64_hl(0xd1b71758, 0xe219652c), -77, -4 },
|
70
|
+
{ lexbor_uint64_hl(0x9c400000, 0x00000000), -50, 4 },
|
71
|
+
{ lexbor_uint64_hl(0xe8d4a510, 0x00000000), -24, 12 },
|
72
|
+
{ lexbor_uint64_hl(0xad78ebc5, 0xac620000), 3, 20 },
|
73
|
+
{ lexbor_uint64_hl(0x813f3978, 0xf8940984), 30, 28 },
|
74
|
+
{ lexbor_uint64_hl(0xc097ce7b, 0xc90715b3), 56, 36 },
|
75
|
+
{ lexbor_uint64_hl(0x8f7e32ce, 0x7bea5c70), 83, 44 },
|
76
|
+
{ lexbor_uint64_hl(0xd5d238a4, 0xabe98068), 109, 52 },
|
77
|
+
{ lexbor_uint64_hl(0x9f4f2726, 0x179a2245), 136, 60 },
|
78
|
+
{ lexbor_uint64_hl(0xed63a231, 0xd4c4fb27), 162, 68 },
|
79
|
+
{ lexbor_uint64_hl(0xb0de6538, 0x8cc8ada8), 189, 76 },
|
80
|
+
{ lexbor_uint64_hl(0x83c7088e, 0x1aab65db), 216, 84 },
|
81
|
+
{ lexbor_uint64_hl(0xc45d1df9, 0x42711d9a), 242, 92 },
|
82
|
+
{ lexbor_uint64_hl(0x924d692c, 0xa61be758), 269, 100 },
|
83
|
+
{ lexbor_uint64_hl(0xda01ee64, 0x1a708dea), 295, 108 },
|
84
|
+
{ lexbor_uint64_hl(0xa26da399, 0x9aef774a), 322, 116 },
|
85
|
+
{ lexbor_uint64_hl(0xf209787b, 0xb47d6b85), 348, 124 },
|
86
|
+
{ lexbor_uint64_hl(0xb454e4a1, 0x79dd1877), 375, 132 },
|
87
|
+
{ lexbor_uint64_hl(0x865b8692, 0x5b9bc5c2), 402, 140 },
|
88
|
+
{ lexbor_uint64_hl(0xc83553c5, 0xc8965d3d), 428, 148 },
|
89
|
+
{ lexbor_uint64_hl(0x952ab45c, 0xfa97a0b3), 455, 156 },
|
90
|
+
{ lexbor_uint64_hl(0xde469fbd, 0x99a05fe3), 481, 164 },
|
91
|
+
{ lexbor_uint64_hl(0xa59bc234, 0xdb398c25), 508, 172 },
|
92
|
+
{ lexbor_uint64_hl(0xf6c69a72, 0xa3989f5c), 534, 180 },
|
93
|
+
{ lexbor_uint64_hl(0xb7dcbf53, 0x54e9bece), 561, 188 },
|
94
|
+
{ lexbor_uint64_hl(0x88fcf317, 0xf22241e2), 588, 196 },
|
95
|
+
{ lexbor_uint64_hl(0xcc20ce9b, 0xd35c78a5), 614, 204 },
|
96
|
+
{ lexbor_uint64_hl(0x98165af3, 0x7b2153df), 641, 212 },
|
97
|
+
{ lexbor_uint64_hl(0xe2a0b5dc, 0x971f303a), 667, 220 },
|
98
|
+
{ lexbor_uint64_hl(0xa8d9d153, 0x5ce3b396), 694, 228 },
|
99
|
+
{ lexbor_uint64_hl(0xfb9b7cd9, 0xa4a7443c), 720, 236 },
|
100
|
+
{ lexbor_uint64_hl(0xbb764c4c, 0xa7a44410), 747, 244 },
|
101
|
+
{ lexbor_uint64_hl(0x8bab8eef, 0xb6409c1a), 774, 252 },
|
102
|
+
{ lexbor_uint64_hl(0xd01fef10, 0xa657842c), 800, 260 },
|
103
|
+
{ lexbor_uint64_hl(0x9b10a4e5, 0xe9913129), 827, 268 },
|
104
|
+
{ lexbor_uint64_hl(0xe7109bfb, 0xa19c0c9d), 853, 276 },
|
105
|
+
{ lexbor_uint64_hl(0xac2820d9, 0x623bf429), 880, 284 },
|
106
|
+
{ lexbor_uint64_hl(0x80444b5e, 0x7aa7cf85), 907, 292 },
|
107
|
+
{ lexbor_uint64_hl(0xbf21e440, 0x03acdd2d), 933, 300 },
|
108
|
+
{ lexbor_uint64_hl(0x8e679c2f, 0x5e44ff8f), 960, 308 },
|
109
|
+
{ lexbor_uint64_hl(0xd433179d, 0x9c8cb841), 986, 316 },
|
110
|
+
{ lexbor_uint64_hl(0x9e19db92, 0xb4e31ba9), 1013, 324 },
|
111
|
+
{ lexbor_uint64_hl(0xeb96bf6e, 0xbadf77d9), 1039, 332 },
|
112
|
+
{ lexbor_uint64_hl(0xaf87023b, 0x9bf0ee6b), 1066, 340 },
|
113
|
+
};
|
114
|
+
|
115
|
+
|
116
|
+
#define LEXBOR_DIYFP_D_1_LOG2_10 0.30102999566398114 /* 1 / log2(10). */
|
117
|
+
|
118
|
+
|
119
|
+
lexbor_diyfp_t
|
120
|
+
lexbor_cached_power_dec(int exp, int *dec_exp)
|
121
|
+
{
|
122
|
+
unsigned int index;
|
123
|
+
const lexbor_diyfp_cpe_t *cp;
|
124
|
+
|
125
|
+
index = (exp + LEXBOR_DECIMAL_EXPONENT_OFF) / LEXBOR_DECIMAL_EXPONENT_DIST;
|
126
|
+
cp = &lexbor_cached_powers[index];
|
127
|
+
|
128
|
+
*dec_exp = cp->dec_exp;
|
129
|
+
|
130
|
+
return lexbor_diyfp(cp->significand, cp->bin_exp);
|
131
|
+
}
|
132
|
+
|
133
|
+
lexbor_diyfp_t
|
134
|
+
lexbor_cached_power_bin(int exp, int *dec_exp)
|
135
|
+
{
|
136
|
+
int k;
|
137
|
+
unsigned int index;
|
138
|
+
const lexbor_diyfp_cpe_t *cp;
|
139
|
+
|
140
|
+
k = (int) ceil((-61 - exp) * LEXBOR_DIYFP_D_1_LOG2_10)
|
141
|
+
+ LEXBOR_DECIMAL_EXPONENT_OFF - 1;
|
142
|
+
|
143
|
+
index = (unsigned) (k >> 3) + 1;
|
144
|
+
|
145
|
+
cp = &lexbor_cached_powers[index];
|
146
|
+
|
147
|
+
*dec_exp = -(LEXBOR_DECIMAL_EXPONENT_MIN + (int) (index << 3));
|
148
|
+
|
149
|
+
return lexbor_diyfp(cp->significand, cp->bin_exp);
|
150
|
+
}
|
151
|
+
|
152
|
+
|
153
|
+
#undef LEXBOR_DIYFP_D_1_LOG2_10
|
@@ -0,0 +1,258 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) Alexander Borisov
|
3
|
+
*
|
4
|
+
* Based on nxt_diyfp.h from NGINX NJS project
|
5
|
+
*
|
6
|
+
* Copyright (C) Dmitry Volyntsev
|
7
|
+
* Copyright (C) NGINX, Inc.
|
8
|
+
*
|
9
|
+
* An internal diy_fp implementation.
|
10
|
+
* For details, see Loitsch, Florian. "Printing floating-point numbers quickly
|
11
|
+
* and accurately with integers." ACM Sigplan Notices 45.6 (2010): 233-243.
|
12
|
+
*/
|
13
|
+
|
14
|
+
#ifndef LEXBOR_DIYFP_H
|
15
|
+
#define LEXBOR_DIYFP_H
|
16
|
+
|
17
|
+
#ifdef __cplusplus
|
18
|
+
extern "C" {
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#include "lexbor/core/base.h"
|
22
|
+
|
23
|
+
#include <math.h>
|
24
|
+
|
25
|
+
|
26
|
+
#ifdef __cplusplus
|
27
|
+
#define lexbor_diyfp(_s, _e) { .significand = (_s), .exp = (int) (_e) }
|
28
|
+
#else
|
29
|
+
#define lexbor_diyfp(_s, _e) (lexbor_diyfp_t) \
|
30
|
+
{ .significand = (_s), .exp = (int) (_e) }
|
31
|
+
#endif
|
32
|
+
#define lexbor_uint64_hl(h, l) (((uint64_t) (h) << 32) + (l))
|
33
|
+
|
34
|
+
|
35
|
+
#define LEXBOR_DBL_SIGNIFICAND_SIZE 52
|
36
|
+
#define LEXBOR_DBL_EXPONENT_BIAS (0x3FF + LEXBOR_DBL_SIGNIFICAND_SIZE)
|
37
|
+
#define LEXBOR_DBL_EXPONENT_MIN (-LEXBOR_DBL_EXPONENT_BIAS)
|
38
|
+
#define LEXBOR_DBL_EXPONENT_MAX (0x7FF - LEXBOR_DBL_EXPONENT_BIAS)
|
39
|
+
#define LEXBOR_DBL_EXPONENT_DENORMAL (-LEXBOR_DBL_EXPONENT_BIAS + 1)
|
40
|
+
|
41
|
+
#define LEXBOR_DBL_SIGNIFICAND_MASK lexbor_uint64_hl(0x000FFFFF, 0xFFFFFFFF)
|
42
|
+
#define LEXBOR_DBL_HIDDEN_BIT lexbor_uint64_hl(0x00100000, 0x00000000)
|
43
|
+
#define LEXBOR_DBL_EXPONENT_MASK lexbor_uint64_hl(0x7FF00000, 0x00000000)
|
44
|
+
|
45
|
+
#define LEXBOR_DIYFP_SIGNIFICAND_SIZE 64
|
46
|
+
|
47
|
+
#define LEXBOR_SIGNIFICAND_SIZE 53
|
48
|
+
#define LEXBOR_SIGNIFICAND_SHIFT (LEXBOR_DIYFP_SIGNIFICAND_SIZE \
|
49
|
+
- LEXBOR_DBL_SIGNIFICAND_SIZE)
|
50
|
+
|
51
|
+
#define LEXBOR_DECIMAL_EXPONENT_OFF 348
|
52
|
+
#define LEXBOR_DECIMAL_EXPONENT_MIN (-348)
|
53
|
+
#define LEXBOR_DECIMAL_EXPONENT_MAX 340
|
54
|
+
#define LEXBOR_DECIMAL_EXPONENT_DIST 8
|
55
|
+
|
56
|
+
|
57
|
+
typedef struct {
|
58
|
+
uint64_t significand;
|
59
|
+
int exp;
|
60
|
+
}
|
61
|
+
lexbor_diyfp_t;
|
62
|
+
|
63
|
+
|
64
|
+
LXB_API lexbor_diyfp_t
|
65
|
+
lexbor_cached_power_dec(int exp, int *dec_exp);
|
66
|
+
|
67
|
+
LXB_API lexbor_diyfp_t
|
68
|
+
lexbor_cached_power_bin(int exp, int *dec_exp);
|
69
|
+
|
70
|
+
|
71
|
+
/*
|
72
|
+
* Inline functions
|
73
|
+
*/
|
74
|
+
#if (LEXBOR_HAVE_BUILTIN_CLZLL)
|
75
|
+
#define nxt_leading_zeros64(x) (((x) == 0) ? 64 : __builtin_clzll(x))
|
76
|
+
|
77
|
+
#else
|
78
|
+
|
79
|
+
lxb_inline uint64_t
|
80
|
+
lexbor_diyfp_leading_zeros64(uint64_t x)
|
81
|
+
{
|
82
|
+
uint64_t n;
|
83
|
+
|
84
|
+
if (x == 0) {
|
85
|
+
return 64;
|
86
|
+
}
|
87
|
+
|
88
|
+
n = 0;
|
89
|
+
|
90
|
+
while ((x & 0x8000000000000000) == 0) {
|
91
|
+
n++;
|
92
|
+
x <<= 1;
|
93
|
+
}
|
94
|
+
|
95
|
+
return n;
|
96
|
+
}
|
97
|
+
|
98
|
+
#endif
|
99
|
+
|
100
|
+
lxb_inline lexbor_diyfp_t
|
101
|
+
lexbor_diyfp_from_d2(double d)
|
102
|
+
{
|
103
|
+
int biased_exp;
|
104
|
+
uint64_t significand;
|
105
|
+
lexbor_diyfp_t r;
|
106
|
+
|
107
|
+
union {
|
108
|
+
double d;
|
109
|
+
uint64_t u64;
|
110
|
+
}
|
111
|
+
u;
|
112
|
+
|
113
|
+
u.d = d;
|
114
|
+
|
115
|
+
biased_exp = (u.u64 & LEXBOR_DBL_EXPONENT_MASK)
|
116
|
+
>> LEXBOR_DBL_SIGNIFICAND_SIZE;
|
117
|
+
significand = u.u64 & LEXBOR_DBL_SIGNIFICAND_MASK;
|
118
|
+
|
119
|
+
if (biased_exp != 0) {
|
120
|
+
r.significand = significand + LEXBOR_DBL_HIDDEN_BIT;
|
121
|
+
r.exp = biased_exp - LEXBOR_DBL_EXPONENT_BIAS;
|
122
|
+
}
|
123
|
+
else {
|
124
|
+
r.significand = significand;
|
125
|
+
r.exp = LEXBOR_DBL_EXPONENT_MIN + 1;
|
126
|
+
}
|
127
|
+
|
128
|
+
return r;
|
129
|
+
}
|
130
|
+
|
131
|
+
lxb_inline double
|
132
|
+
lexbor_diyfp_2d(lexbor_diyfp_t v)
|
133
|
+
{
|
134
|
+
int exp;
|
135
|
+
uint64_t significand, biased_exp;
|
136
|
+
|
137
|
+
union {
|
138
|
+
double d;
|
139
|
+
uint64_t u64;
|
140
|
+
}
|
141
|
+
u;
|
142
|
+
|
143
|
+
exp = v.exp;
|
144
|
+
significand = v.significand;
|
145
|
+
|
146
|
+
while (significand > LEXBOR_DBL_HIDDEN_BIT + LEXBOR_DBL_SIGNIFICAND_MASK) {
|
147
|
+
significand >>= 1;
|
148
|
+
exp++;
|
149
|
+
}
|
150
|
+
|
151
|
+
if (exp >= LEXBOR_DBL_EXPONENT_MAX) {
|
152
|
+
return INFINITY;
|
153
|
+
}
|
154
|
+
|
155
|
+
if (exp < LEXBOR_DBL_EXPONENT_DENORMAL) {
|
156
|
+
return 0.0;
|
157
|
+
}
|
158
|
+
|
159
|
+
while (exp > LEXBOR_DBL_EXPONENT_DENORMAL
|
160
|
+
&& (significand & LEXBOR_DBL_HIDDEN_BIT) == 0)
|
161
|
+
{
|
162
|
+
significand <<= 1;
|
163
|
+
exp--;
|
164
|
+
}
|
165
|
+
|
166
|
+
if (exp == LEXBOR_DBL_EXPONENT_DENORMAL
|
167
|
+
&& (significand & LEXBOR_DBL_HIDDEN_BIT) == 0)
|
168
|
+
{
|
169
|
+
biased_exp = 0;
|
170
|
+
|
171
|
+
} else {
|
172
|
+
biased_exp = (uint64_t) (exp + LEXBOR_DBL_EXPONENT_BIAS);
|
173
|
+
}
|
174
|
+
|
175
|
+
u.u64 = (significand & LEXBOR_DBL_SIGNIFICAND_MASK)
|
176
|
+
| (biased_exp << LEXBOR_DBL_SIGNIFICAND_SIZE);
|
177
|
+
|
178
|
+
return u.d;
|
179
|
+
}
|
180
|
+
|
181
|
+
lxb_inline lexbor_diyfp_t
|
182
|
+
lexbor_diyfp_shift_left(lexbor_diyfp_t v, unsigned shift)
|
183
|
+
{
|
184
|
+
return lexbor_diyfp(v.significand << shift, v.exp - shift);
|
185
|
+
}
|
186
|
+
|
187
|
+
lxb_inline lexbor_diyfp_t
|
188
|
+
lexbor_diyfp_shift_right(lexbor_diyfp_t v, unsigned shift)
|
189
|
+
{
|
190
|
+
return lexbor_diyfp(v.significand >> shift, v.exp + shift);
|
191
|
+
}
|
192
|
+
|
193
|
+
lxb_inline lexbor_diyfp_t
|
194
|
+
lexbor_diyfp_sub(lexbor_diyfp_t lhs, lexbor_diyfp_t rhs)
|
195
|
+
{
|
196
|
+
return lexbor_diyfp(lhs.significand - rhs.significand, lhs.exp);
|
197
|
+
}
|
198
|
+
|
199
|
+
lxb_inline lexbor_diyfp_t
|
200
|
+
lexbor_diyfp_mul(lexbor_diyfp_t lhs, lexbor_diyfp_t rhs)
|
201
|
+
{
|
202
|
+
#if (LEXBOR_HAVE_UNSIGNED_INT128)
|
203
|
+
|
204
|
+
uint64_t l, h;
|
205
|
+
lxb_uint128_t u128;
|
206
|
+
|
207
|
+
u128 = (lxb_uint128_t) (lhs.significand)
|
208
|
+
* (lxb_uint128_t) (rhs.significand);
|
209
|
+
|
210
|
+
h = u128 >> 64;
|
211
|
+
l = (uint64_t) u128;
|
212
|
+
|
213
|
+
/* rounding. */
|
214
|
+
|
215
|
+
if (l & ((uint64_t) 1 << 63)) {
|
216
|
+
h++;
|
217
|
+
}
|
218
|
+
|
219
|
+
return lexbor_diyfp(h, lhs.exp + rhs.exp + 64);
|
220
|
+
|
221
|
+
#else
|
222
|
+
|
223
|
+
uint64_t a, b, c, d, ac, bc, ad, bd, tmp;
|
224
|
+
|
225
|
+
a = lhs.significand >> 32;
|
226
|
+
b = lhs.significand & 0xffffffff;
|
227
|
+
c = rhs.significand >> 32;
|
228
|
+
d = rhs.significand & 0xffffffff;
|
229
|
+
|
230
|
+
ac = a * c;
|
231
|
+
bc = b * c;
|
232
|
+
ad = a * d;
|
233
|
+
bd = b * d;
|
234
|
+
|
235
|
+
tmp = (bd >> 32) + (ad & 0xffffffff) + (bc & 0xffffffff);
|
236
|
+
|
237
|
+
/* mult_round. */
|
238
|
+
|
239
|
+
tmp += 1U << 31;
|
240
|
+
|
241
|
+
return lexbor_diyfp(ac + (ad >> 32) + (bc >> 32) + (tmp >> 32),
|
242
|
+
lhs.exp + rhs.exp + 64);
|
243
|
+
#endif
|
244
|
+
}
|
245
|
+
|
246
|
+
lxb_inline lexbor_diyfp_t
|
247
|
+
lexbor_diyfp_normalize(lexbor_diyfp_t v)
|
248
|
+
{
|
249
|
+
return lexbor_diyfp_shift_left(v,
|
250
|
+
(unsigned) lexbor_diyfp_leading_zeros64(v.significand));
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
#ifdef __cplusplus
|
255
|
+
} /* extern "C" */
|
256
|
+
#endif
|
257
|
+
|
258
|
+
#endif /* LEXBOR_DIYFP_H */
|
@@ -0,0 +1,187 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018-2019 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#include "lexbor/core/dobject.h"
|
8
|
+
|
9
|
+
|
10
|
+
#if defined(LEXBOR_HAVE_ADDRESS_SANITIZER)
|
11
|
+
#include <sanitizer/asan_interface.h>
|
12
|
+
#endif
|
13
|
+
|
14
|
+
|
15
|
+
lexbor_dobject_t *
|
16
|
+
lexbor_dobject_create(void)
|
17
|
+
{
|
18
|
+
return lexbor_calloc(1, sizeof(lexbor_dobject_t));
|
19
|
+
}
|
20
|
+
|
21
|
+
lxb_status_t
|
22
|
+
lexbor_dobject_init(lexbor_dobject_t *dobject,
|
23
|
+
size_t chunk_size, size_t struct_size)
|
24
|
+
{
|
25
|
+
lxb_status_t status;
|
26
|
+
|
27
|
+
if (dobject == NULL) {
|
28
|
+
return LXB_STATUS_ERROR_OBJECT_IS_NULL;
|
29
|
+
}
|
30
|
+
|
31
|
+
if (chunk_size == 0 || struct_size == 0) {
|
32
|
+
return LXB_STATUS_ERROR_WRONG_ARGS;
|
33
|
+
}
|
34
|
+
|
35
|
+
/* Set params */
|
36
|
+
dobject->allocated = 0UL;
|
37
|
+
dobject->struct_size = struct_size;
|
38
|
+
|
39
|
+
/* Init memory */
|
40
|
+
dobject->mem = lexbor_mem_create();
|
41
|
+
|
42
|
+
status = lexbor_mem_init(dobject->mem,
|
43
|
+
lexbor_mem_align(chunk_size * dobject->struct_size));
|
44
|
+
if (status) {
|
45
|
+
return status;
|
46
|
+
}
|
47
|
+
|
48
|
+
#if defined(LEXBOR_HAVE_ADDRESS_SANITIZER)
|
49
|
+
ASAN_POISON_MEMORY_REGION(dobject->mem->chunk->data,
|
50
|
+
dobject->mem->chunk->size);
|
51
|
+
#endif
|
52
|
+
|
53
|
+
/* Array */
|
54
|
+
dobject->cache = lexbor_array_create();
|
55
|
+
|
56
|
+
status = lexbor_array_init(dobject->cache, chunk_size);
|
57
|
+
if (status)
|
58
|
+
return status;
|
59
|
+
|
60
|
+
return LXB_STATUS_OK;
|
61
|
+
}
|
62
|
+
|
63
|
+
void
|
64
|
+
lexbor_dobject_clean(lexbor_dobject_t *dobject)
|
65
|
+
{
|
66
|
+
if (dobject != NULL) {
|
67
|
+
dobject->allocated = 0UL;
|
68
|
+
|
69
|
+
lexbor_mem_clean(dobject->mem);
|
70
|
+
lexbor_array_clean(dobject->cache);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
lexbor_dobject_t *
|
75
|
+
lexbor_dobject_destroy(lexbor_dobject_t *dobject, bool destroy_self)
|
76
|
+
{
|
77
|
+
if (dobject == NULL)
|
78
|
+
return NULL;
|
79
|
+
|
80
|
+
dobject->mem = lexbor_mem_destroy(dobject->mem, true);
|
81
|
+
dobject->cache = lexbor_array_destroy(dobject->cache, true);
|
82
|
+
|
83
|
+
if (destroy_self == true) {
|
84
|
+
return lexbor_free(dobject);
|
85
|
+
}
|
86
|
+
|
87
|
+
return dobject;
|
88
|
+
}
|
89
|
+
|
90
|
+
void *
|
91
|
+
lexbor_dobject_alloc(lexbor_dobject_t *dobject)
|
92
|
+
{
|
93
|
+
void *data;
|
94
|
+
|
95
|
+
if (lexbor_array_length(dobject->cache) != 0) {
|
96
|
+
dobject->allocated++;
|
97
|
+
|
98
|
+
#if defined(LEXBOR_HAVE_ADDRESS_SANITIZER)
|
99
|
+
data = lexbor_array_pop(dobject->cache);
|
100
|
+
ASAN_UNPOISON_MEMORY_REGION(data, dobject->struct_size);
|
101
|
+
|
102
|
+
return data;
|
103
|
+
#else
|
104
|
+
return lexbor_array_pop(dobject->cache);
|
105
|
+
#endif
|
106
|
+
}
|
107
|
+
|
108
|
+
data = lexbor_mem_alloc(dobject->mem, dobject->struct_size);
|
109
|
+
if (data == NULL) {
|
110
|
+
return NULL;
|
111
|
+
}
|
112
|
+
|
113
|
+
#if defined(LEXBOR_HAVE_ADDRESS_SANITIZER)
|
114
|
+
ASAN_UNPOISON_MEMORY_REGION(data, dobject->struct_size);
|
115
|
+
#endif
|
116
|
+
|
117
|
+
dobject->allocated++;
|
118
|
+
|
119
|
+
return data;
|
120
|
+
}
|
121
|
+
|
122
|
+
void *
|
123
|
+
lexbor_dobject_calloc(lexbor_dobject_t *dobject)
|
124
|
+
{
|
125
|
+
void *data = lexbor_dobject_alloc(dobject);
|
126
|
+
|
127
|
+
if (data != NULL) {
|
128
|
+
memset(data, 0, dobject->struct_size);
|
129
|
+
}
|
130
|
+
|
131
|
+
return data;
|
132
|
+
}
|
133
|
+
|
134
|
+
void *
|
135
|
+
lexbor_dobject_free(lexbor_dobject_t *dobject, void *data)
|
136
|
+
{
|
137
|
+
if (data == NULL) {
|
138
|
+
return NULL;
|
139
|
+
}
|
140
|
+
|
141
|
+
#if defined(LEXBOR_HAVE_ADDRESS_SANITIZER)
|
142
|
+
ASAN_POISON_MEMORY_REGION(data, dobject->struct_size);
|
143
|
+
#endif
|
144
|
+
|
145
|
+
if (lexbor_array_push(dobject->cache, data) == LXB_STATUS_OK) {
|
146
|
+
dobject->allocated--;
|
147
|
+
return NULL;
|
148
|
+
}
|
149
|
+
|
150
|
+
return data;
|
151
|
+
}
|
152
|
+
|
153
|
+
void *
|
154
|
+
lexbor_dobject_by_absolute_position(lexbor_dobject_t *dobject, size_t pos)
|
155
|
+
{
|
156
|
+
size_t chunk_idx, chunk_pos, i;
|
157
|
+
lexbor_mem_chunk_t *chunk;
|
158
|
+
|
159
|
+
if (pos >= dobject->allocated) {
|
160
|
+
return NULL;
|
161
|
+
}
|
162
|
+
|
163
|
+
chunk = dobject->mem->chunk_first;
|
164
|
+
chunk_pos = pos * dobject->struct_size;
|
165
|
+
chunk_idx = chunk_pos / dobject->mem->chunk_min_size;
|
166
|
+
|
167
|
+
for (i = 0; i < chunk_idx; i++) {
|
168
|
+
chunk = chunk->next;
|
169
|
+
}
|
170
|
+
|
171
|
+
return &chunk->data[chunk_pos % chunk->size];
|
172
|
+
}
|
173
|
+
|
174
|
+
/*
|
175
|
+
* No inline functions for ABI.
|
176
|
+
*/
|
177
|
+
size_t
|
178
|
+
lexbor_dobject_allocated_noi(lexbor_dobject_t *dobject)
|
179
|
+
{
|
180
|
+
return lexbor_dobject_allocated(dobject);
|
181
|
+
}
|
182
|
+
|
183
|
+
size_t
|
184
|
+
lexbor_dobject_cache_length_noi(lexbor_dobject_t *dobject)
|
185
|
+
{
|
186
|
+
return lexbor_dobject_cache_length(dobject);
|
187
|
+
}
|
@@ -0,0 +1,92 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2018 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LEXBOR_DOBJECT_H
|
8
|
+
#define LEXBOR_DOBJECT_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#include "lexbor/core/base.h"
|
15
|
+
#include "lexbor/core/mem.h"
|
16
|
+
#include "lexbor/core/array.h"
|
17
|
+
|
18
|
+
|
19
|
+
typedef struct {
|
20
|
+
lexbor_mem_t *mem;
|
21
|
+
lexbor_array_t *cache;
|
22
|
+
|
23
|
+
size_t allocated;
|
24
|
+
size_t struct_size;
|
25
|
+
}
|
26
|
+
lexbor_dobject_t;
|
27
|
+
|
28
|
+
|
29
|
+
LXB_API lexbor_dobject_t *
|
30
|
+
lexbor_dobject_create(void);
|
31
|
+
|
32
|
+
LXB_API lxb_status_t
|
33
|
+
lexbor_dobject_init(lexbor_dobject_t *dobject,
|
34
|
+
size_t chunk_size, size_t struct_size);
|
35
|
+
|
36
|
+
LXB_API void
|
37
|
+
lexbor_dobject_clean(lexbor_dobject_t *dobject);
|
38
|
+
|
39
|
+
LXB_API lexbor_dobject_t *
|
40
|
+
lexbor_dobject_destroy(lexbor_dobject_t *dobject, bool destroy_self);
|
41
|
+
|
42
|
+
|
43
|
+
LXB_API uint8_t *
|
44
|
+
lexbor_dobject_init_list_entries(lexbor_dobject_t *dobject, size_t pos);
|
45
|
+
|
46
|
+
|
47
|
+
LXB_API void *
|
48
|
+
lexbor_dobject_alloc(lexbor_dobject_t *dobject);
|
49
|
+
|
50
|
+
LXB_API void *
|
51
|
+
lexbor_dobject_calloc(lexbor_dobject_t *dobject);
|
52
|
+
|
53
|
+
LXB_API void *
|
54
|
+
lexbor_dobject_free(lexbor_dobject_t *dobject, void *data);
|
55
|
+
|
56
|
+
|
57
|
+
LXB_API void *
|
58
|
+
lexbor_dobject_by_absolute_position(lexbor_dobject_t *dobject, size_t pos);
|
59
|
+
|
60
|
+
|
61
|
+
/*
|
62
|
+
* Inline functions
|
63
|
+
*/
|
64
|
+
lxb_inline size_t
|
65
|
+
lexbor_dobject_allocated(lexbor_dobject_t *dobject)
|
66
|
+
{
|
67
|
+
return dobject->allocated;
|
68
|
+
}
|
69
|
+
|
70
|
+
lxb_inline size_t
|
71
|
+
lexbor_dobject_cache_length(lexbor_dobject_t *dobject)
|
72
|
+
{
|
73
|
+
return lexbor_array_length(dobject->cache);
|
74
|
+
}
|
75
|
+
|
76
|
+
/*
|
77
|
+
* No inline functions for ABI.
|
78
|
+
*/
|
79
|
+
LXB_API size_t
|
80
|
+
lexbor_dobject_allocated_noi(lexbor_dobject_t *dobject);
|
81
|
+
|
82
|
+
LXB_API size_t
|
83
|
+
lexbor_dobject_cache_length_noi(lexbor_dobject_t *dobject);
|
84
|
+
|
85
|
+
|
86
|
+
#ifdef __cplusplus
|
87
|
+
} /* extern "C" */
|
88
|
+
#endif
|
89
|
+
|
90
|
+
#endif /* LEXBOR_DOBJECT_H */
|
91
|
+
|
92
|
+
|