rroonga 7.1.1-x86-mingw32 → 9.0.2-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Rakefile +3 -3
- data/doc/text/news.md +22 -0
- data/ext/groonga/extconf.rb +29 -26
- data/ext/groonga/rb-grn.h +3 -3
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/2.4/groonga.so +0 -0
- data/lib/2.5/groonga.so +0 -0
- data/lib/groonga/expression-builder.rb +1 -1
- data/lib/groonga/schema.rb +13 -0
- data/rroonga-build.rb +4 -11
- data/test/test-expression-builder.rb +8 -0
- data/vendor/local/bin/cv2pdb.exe +0 -0
- data/vendor/local/bin/generate-pdb.bat +38 -36
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpackc.dll +0 -0
- data/vendor/local/bin/libonigmo-6.dll +0 -0
- data/vendor/local/bin/libpcre-1.dll +0 -0
- data/vendor/local/bin/libpcrecpp-0.dll +0 -0
- data/vendor/local/bin/libpcreposix-0.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/{lz4cat → lz4cat.exe} +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/pcre-config +1 -1
- data/vendor/local/bin/pcregrep.exe +0 -0
- data/vendor/local/bin/pcretest.exe +0 -0
- data/vendor/local/bin/unlz4.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/include/groonga/groonga.h +16 -1
- data/vendor/local/include/groonga/groonga/accessor.h +5 -1
- data/vendor/local/include/groonga/groonga/column.h +4 -0
- data/vendor/local/include/groonga/groonga/db.h +3 -1
- data/vendor/local/include/groonga/groonga/expr.h +5 -0
- data/vendor/local/include/groonga/groonga/groonga.h +124 -171
- data/vendor/local/include/groonga/groonga/highlighter.h +57 -0
- data/vendor/local/include/groonga/groonga/ii.h +2 -0
- data/vendor/local/include/groonga/groonga/index_column.h +31 -0
- data/vendor/local/include/groonga/groonga/memory.h +29 -0
- data/vendor/local/include/groonga/groonga/msgpack.h +50 -0
- data/vendor/local/include/groonga/groonga/obj.h +22 -1
- data/vendor/local/include/groonga/groonga/option.h +61 -0
- data/vendor/local/include/groonga/groonga/output.h +57 -2
- data/vendor/local/include/groonga/groonga/output_columns.h +38 -0
- data/vendor/local/include/groonga/groonga/plugin.h +5 -0
- data/vendor/local/include/groonga/groonga/raw_string.h +60 -0
- data/vendor/local/include/groonga/groonga/string.h +113 -0
- data/vendor/local/include/groonga/groonga/table.h +89 -1
- data/vendor/local/include/groonga/groonga/thread.h +15 -0
- data/vendor/local/include/groonga/groonga/time.h +1 -0
- data/vendor/local/include/groonga/groonga/token.h +60 -10
- data/vendor/local/include/groonga/groonga/token_cursor.h +59 -0
- data/vendor/local/include/groonga/groonga/token_filter.h +24 -0
- data/vendor/local/include/groonga/groonga/token_metadata.h +49 -0
- data/vendor/local/include/groonga/groonga/tokenizer.h +99 -25
- data/vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h +50 -0
- data/vendor/local/include/groonga/groonga/vector.h +80 -0
- data/vendor/local/include/groonga/groonga/version.h +32 -0
- data/vendor/local/include/groonga/groonga/window_function.h +18 -8
- data/vendor/local/include/groonga/groonga/window_function_executor.h +68 -0
- data/vendor/local/include/lz4.h +504 -212
- data/vendor/local/include/lz4frame.h +433 -153
- data/vendor/local/include/lz4frame_static.h +47 -0
- data/vendor/local/include/lz4hc.h +281 -108
- data/vendor/local/include/msgpack.hpp +4 -0
- data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/adaptor_base_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/array_ref_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/boost/string_view.hpp +15 -0
- data/vendor/local/include/msgpack/adaptor/check_container_size_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/cpp17/optional.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/cpp17/string_view.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/define_decl.hpp +2 -0
- data/vendor/local/include/msgpack/adaptor/ext_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/fixint_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/int_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/map_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/nil_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/raw_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/size_equal_only_decl.hpp +1 -0
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +2 -2
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +2 -2
- data/vendor/local/include/msgpack/adaptor/v4raw_decl.hpp +1 -0
- data/vendor/local/include/msgpack/cpp_config_decl.hpp +1 -0
- data/vendor/local/include/msgpack/create_object_visitor.hpp +17 -0
- data/vendor/local/include/msgpack/create_object_visitor_decl.hpp +16 -0
- data/vendor/local/include/msgpack/fbuffer.h +1 -1
- data/vendor/local/include/msgpack/fbuffer_decl.hpp +1 -0
- data/vendor/local/include/msgpack/gcc_atomic.hpp +0 -2
- data/vendor/local/include/msgpack/iterator_decl.hpp +2 -1
- data/vendor/local/include/msgpack/meta_decl.hpp +1 -0
- data/vendor/local/include/msgpack/null_visitor.hpp +17 -0
- data/vendor/local/include/msgpack/null_visitor_decl.hpp +16 -0
- data/vendor/local/include/msgpack/object.h +5 -0
- data/vendor/local/include/msgpack/object_decl.hpp +1 -0
- data/vendor/local/include/msgpack/object_fwd.hpp +1 -0
- data/vendor/local/include/msgpack/object_fwd_decl.hpp +1 -0
- data/vendor/local/include/msgpack/pack.h +1 -0
- data/vendor/local/include/msgpack/pack_decl.hpp +1 -0
- data/vendor/local/include/msgpack/parse.hpp +18 -0
- data/vendor/local/include/msgpack/parse_decl.hpp +16 -0
- data/vendor/local/include/msgpack/parse_return.hpp +17 -0
- data/vendor/local/include/msgpack/sbuffer_decl.hpp +1 -0
- data/vendor/local/include/msgpack/sysdep.h +34 -26
- data/vendor/local/include/msgpack/type.hpp +9 -0
- data/vendor/local/include/msgpack/unpack.h +12 -1
- data/vendor/local/include/msgpack/unpack.hpp +1 -0
- data/vendor/local/include/msgpack/unpack_decl.hpp +1 -0
- data/vendor/local/include/msgpack/unpack_exception.hpp +15 -0
- data/vendor/local/include/msgpack/unpack_template.h +22 -30
- data/vendor/local/include/msgpack/v1/adaptor/array_ref.hpp +6 -6
- data/vendor/local/include/msgpack/v1/adaptor/boost/fusion.hpp +49 -6
- data/vendor/local/include/msgpack/v1/adaptor/boost/msgpack_variant.hpp +6 -4
- data/vendor/local/include/msgpack/v1/adaptor/boost/string_view.hpp +87 -0
- data/vendor/local/include/msgpack/v1/adaptor/carray.hpp +11 -11
- data/vendor/local/include/msgpack/v1/adaptor/char_ptr.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/array.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_char.hpp +8 -1
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp +8 -1
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/forward_list.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/tuple.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_map.hpp +4 -4
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_set.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/cpp17/optional.hpp +90 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp17/string_view.hpp +86 -0
- data/vendor/local/include/msgpack/v1/adaptor/deque.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_array.hpp +1088 -32
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_map.hpp +32 -16
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp +32 -32
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_convert_helper.hpp +45 -0
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_array.hpp +4 -3
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_map.hpp +4 -2
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/ext.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/fixint.hpp +40 -24
- data/vendor/local/include/msgpack/v1/adaptor/float.hpp +4 -4
- data/vendor/local/include/msgpack/v1/adaptor/int.hpp +55 -33
- data/vendor/local/include/msgpack/v1/adaptor/list.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/map.hpp +10 -10
- data/vendor/local/include/msgpack/v1/adaptor/pair.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/set.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/string.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_map.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_set.hpp +2 -2
- data/vendor/local/include/msgpack/v1/adaptor/vector.hpp +5 -5
- data/vendor/local/include/msgpack/v1/adaptor/vector_bool.hpp +1 -1
- data/vendor/local/include/msgpack/v1/adaptor/vector_char.hpp +9 -9
- data/vendor/local/include/msgpack/v1/adaptor/vector_unsigned_char.hpp +9 -9
- data/vendor/local/include/msgpack/v1/cpp_config.hpp +6 -0
- data/vendor/local/include/msgpack/v1/cpp_config_decl.hpp +6 -0
- data/vendor/local/include/msgpack/v1/detail/cpp03_zone.hpp +41 -34
- data/vendor/local/include/msgpack/v1/detail/cpp03_zone_decl.hpp +8 -0
- data/vendor/local/include/msgpack/v1/detail/cpp11_zone.hpp +25 -19
- data/vendor/local/include/msgpack/v1/detail/cpp11_zone_decl.hpp +8 -0
- data/vendor/local/include/msgpack/v1/meta.hpp +6 -0
- data/vendor/local/include/msgpack/v1/meta_decl.hpp +5 -0
- data/vendor/local/include/msgpack/v1/object.hpp +768 -393
- data/vendor/local/include/msgpack/v1/object_decl.hpp +11 -1
- data/vendor/local/include/msgpack/v1/object_fwd.hpp +4 -1
- data/vendor/local/include/msgpack/v1/object_fwd_decl.hpp +3 -1
- data/vendor/local/include/msgpack/v1/parse_return.hpp +36 -0
- data/vendor/local/include/msgpack/v1/unpack.hpp +39 -120
- data/vendor/local/include/msgpack/v1/unpack_decl.hpp +2 -9
- data/vendor/local/include/msgpack/v1/unpack_exception.hpp +122 -0
- data/vendor/local/include/msgpack/v1/vrefbuffer.hpp +2 -2
- data/vendor/local/include/msgpack/v2/create_object_visitor.hpp +250 -0
- data/vendor/local/include/msgpack/v2/create_object_visitor_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v2/meta_decl.hpp +4 -0
- data/vendor/local/include/msgpack/v2/null_visitor.hpp +96 -0
- data/vendor/local/include/msgpack/v2/null_visitor_decl.hpp +29 -0
- data/vendor/local/include/msgpack/v2/object_decl.hpp +4 -0
- data/vendor/local/include/msgpack/v2/object_fwd.hpp +1 -1
- data/vendor/local/include/msgpack/v2/object_fwd_decl.hpp +2 -0
- data/vendor/local/include/msgpack/v2/pack_decl.hpp +1 -0
- data/vendor/local/include/msgpack/v2/parse.hpp +1072 -0
- data/vendor/local/include/msgpack/v2/parse_decl.hpp +79 -0
- data/vendor/local/include/msgpack/v2/parse_return.hpp +37 -0
- data/vendor/local/include/msgpack/v2/unpack.hpp +21 -1298
- data/vendor/local/include/msgpack/v2/unpack_decl.hpp +9 -45
- data/vendor/local/include/msgpack/v2/x3_parse.hpp +875 -0
- data/vendor/local/include/msgpack/v2/x3_parse_decl.hpp +36 -0
- data/vendor/local/include/msgpack/v2/x3_unpack.hpp +120 -0
- data/vendor/local/include/msgpack/v2/x3_unpack_decl.hpp +71 -0
- data/vendor/local/include/msgpack/v3/adaptor/adaptor_base.hpp +58 -0
- data/vendor/local/include/msgpack/v3/adaptor/adaptor_base_decl.hpp +52 -0
- data/vendor/local/include/msgpack/v3/adaptor/array_ref_decl.hpp +36 -0
- data/vendor/local/include/msgpack/v3/adaptor/boost/msgpack_variant_decl.hpp +42 -0
- data/vendor/local/include/msgpack/v3/adaptor/check_container_size_decl.hpp +39 -0
- data/vendor/local/include/msgpack/v3/adaptor/define_decl.hpp +23 -0
- data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_define_array_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_define_map_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +43 -0
- data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_define_array_decl.hpp +32 -0
- data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_define_map_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +59 -0
- data/vendor/local/include/msgpack/v3/adaptor/ext_decl.hpp +34 -0
- data/vendor/local/include/msgpack/v3/adaptor/fixint_decl.hpp +43 -0
- data/vendor/local/include/msgpack/v3/adaptor/int_decl.hpp +54 -0
- data/vendor/local/include/msgpack/v3/adaptor/map_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v3/adaptor/msgpack_tuple_decl.hpp +21 -0
- data/vendor/local/include/msgpack/v3/adaptor/nil_decl.hpp +42 -0
- data/vendor/local/include/msgpack/v3/adaptor/raw_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v3/adaptor/size_equal_only_decl.hpp +35 -0
- data/vendor/local/include/msgpack/v3/adaptor/v4raw_decl.hpp +34 -0
- data/vendor/local/include/msgpack/v3/cpp_config_decl.hpp +84 -0
- data/vendor/local/include/msgpack/v3/create_object_visitor_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v3/detail/cpp03_zone_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v3/detail/cpp11_zone_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v3/fbuffer_decl.hpp +32 -0
- data/vendor/local/include/msgpack/v3/iterator_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v3/meta_decl.hpp +50 -0
- data/vendor/local/include/msgpack/v3/null_visitor_decl.hpp +29 -0
- data/vendor/local/include/msgpack/v3/object_decl.hpp +53 -0
- data/vendor/local/include/msgpack/v3/object_fwd.hpp +70 -0
- data/vendor/local/include/msgpack/v3/object_fwd_decl.hpp +75 -0
- data/vendor/local/include/msgpack/v3/pack_decl.hpp +55 -0
- data/vendor/local/include/msgpack/v3/parse.hpp +677 -0
- data/vendor/local/include/msgpack/v3/parse_decl.hpp +49 -0
- data/vendor/local/include/msgpack/v3/parse_return.hpp +35 -0
- data/vendor/local/include/msgpack/v3/sbuffer_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v3/unpack.hpp +192 -0
- data/vendor/local/include/msgpack/v3/unpack_decl.hpp +304 -0
- data/vendor/local/include/msgpack/v3/vrefbuffer_decl.hpp +29 -0
- data/vendor/local/include/msgpack/v3/x3_parse_decl.hpp +34 -0
- data/vendor/local/include/msgpack/v3/x3_unpack.hpp +97 -0
- data/vendor/local/include/msgpack/v3/x3_unpack_decl.hpp +65 -0
- data/vendor/local/include/msgpack/v3/zbuffer_decl.hpp +29 -0
- data/vendor/local/include/msgpack/v3/zone_decl.hpp +21 -0
- data/vendor/local/include/msgpack/version_master.h +2 -2
- data/vendor/local/include/msgpack/versioning.hpp +5 -3
- data/vendor/local/include/msgpack/vrefbuffer.h +1 -2
- data/vendor/local/include/msgpack/vrefbuffer_decl.hpp +1 -0
- data/vendor/local/include/msgpack/x3_parse.hpp +15 -0
- data/vendor/local/include/msgpack/x3_parse_decl.hpp +16 -0
- data/vendor/local/include/msgpack/x3_unpack.hpp +16 -0
- data/vendor/local/include/msgpack/x3_unpack_decl.hpp +16 -0
- data/vendor/local/include/msgpack/zbuffer_decl.hpp +1 -0
- data/vendor/local/include/msgpack/zone_decl.hpp +1 -0
- data/vendor/local/include/pcre.h +6 -6
- data/vendor/local/lib/cmake/msgpack/msgpack-config-version.cmake +46 -0
- data/vendor/local/lib/cmake/msgpack/msgpack-config.cmake +47 -0
- data/vendor/local/lib/cmake/msgpack/msgpack-targets-noconfig.cmake +29 -0
- data/vendor/local/lib/cmake/msgpack/msgpack-targets.cmake +101 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.la +1 -1
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.la +2 -2
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
- data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +150 -19
- data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +123 -65
- data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +528 -113
- data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +142 -40
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +1 -1
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +64 -35
- data/vendor/local/lib/groonga/scripts/ruby/expression.rb +3 -1
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +15 -21
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +274 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree.rb +8 -2
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/assign.rb +22 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/assign_binary_operation.rb +24 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +206 -8
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/constant.rb +16 -1
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/function_call.rb +30 -1
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/logical_operation.rb +6 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/member.rb +18 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/null.rb +17 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/reference.rb +18 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/table.rb +14 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/unary_operation.rb +26 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/variable.rb +4 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree_builder.rb +78 -8
- data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +10 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/locale_output.rb +28 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger.rb +36 -4
- data/vendor/local/lib/groonga/scripts/ruby/record.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +0 -3
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +46 -5
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data_size_estimator.rb +5 -136
- data/vendor/local/lib/groonga/scripts/ruby/table.rb +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +1 -1
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/{liblz4.dll.1.5.0 → liblz4.dll.1.8.2} +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libonigmo.a +0 -0
- data/vendor/local/lib/libonigmo.dll.a +0 -0
- data/vendor/local/lib/libpcre.a +0 -0
- data/vendor/local/lib/libpcre.dll.a +0 -0
- data/vendor/local/lib/libpcre.la +2 -2
- data/vendor/local/lib/libpcrecpp.dll.a +0 -0
- data/vendor/local/lib/libpcrecpp.la +1 -1
- data/vendor/local/lib/libpcreposix.a +0 -0
- data/vendor/local/lib/libpcreposix.dll.a +0 -0
- data/vendor/local/lib/libpcreposix.la +2 -2
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga-normalizer-mysql.pc +1 -1
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/lib/pkgconfig/liblz4.pc +3 -3
- data/vendor/local/lib/pkgconfig/libpcre.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpcrecpp.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpcreposix.pc +1 -1
- data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga-normalizer-mysql/README.md +14 -22
- data/vendor/local/share/doc/groonga-normalizer-mysql/news.md +22 -2
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +113 -4
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +46 -19
- data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +10 -0
- data/vendor/local/share/doc/groonga/en/html/_static/{jquery-3.1.0.js → jquery-3.2.1.js} +474 -295
- data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -4
- data/vendor/local/share/doc/groonga/en/html/_static/language_data.js +297 -0
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +4 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +69 -322
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +16 -24
- data/vendor/local/share/doc/groonga/en/html/client.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/community.html +30 -38
- data/vendor/local/share/doc/groonga/en/html/contribution.html +23 -31
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +58 -66
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +51 -56
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +52 -56
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +27 -35
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +19 -27
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +26 -34
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +167 -167
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +16 -24
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +28 -36
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +59 -67
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +31 -39
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +18 -26
- data/vendor/local/share/doc/groonga/en/html/development.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +38 -43
- data/vendor/local/share/doc/groonga/en/html/genindex.html +50 -28
- data/vendor/local/share/doc/groonga/en/html/index.html +248 -234
- data/vendor/local/share/doc/groonga/en/html/install.html +43 -47
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -51
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +52 -131
- data/vendor/local/share/doc/groonga/en/html/install/docker.html +155 -0
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +41 -49
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +29 -37
- data/vendor/local/share/doc/groonga/en/html/install/others.html +142 -150
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +30 -38
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +43 -51
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -41
- data/vendor/local/share/doc/groonga/en/html/limitations.html +36 -42
- data/vendor/local/share/doc/groonga/en/html/news.html +1586 -598
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +83 -83
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +147 -155
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +26 -34
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +225 -233
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +48 -56
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +378 -386
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +320 -328
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +442 -448
- data/vendor/local/share/doc/groonga/en/html/news/5.x.html +742 -860
- data/vendor/local/share/doc/groonga/en/html/news/6.x.html +544 -621
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -40
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +208 -198
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +85 -93
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +50 -57
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +62 -77
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +117 -149
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +140 -176
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +43 -55
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +48 -56
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +194 -254
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +106 -138
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +62 -82
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +117 -137
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +74 -98
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +79 -103
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +40 -48
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +57 -73
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +75 -99
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +495 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +52 -68
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +291 -357
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +69 -89
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +47 -59
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +226 -306
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +120 -160
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +80 -103
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +46 -58
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +40 -52
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +52 -66
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +98 -122
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +40 -26
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +16 -24
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +16 -24
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +30 -34
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +16 -24
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +92 -100
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +76 -84
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +26 -34
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +64 -72
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +21 -29
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -33
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +32 -40
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +105 -113
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -50
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +85 -73
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +31 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +131 -139
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +370 -326
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +115 -117
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +38 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +47 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +40 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +42 -50
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +41 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +37 -45
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +71 -63
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +31 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +49 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +64 -71
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +335 -138
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +233 -87
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +45 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +42 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +43 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +58 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +33 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +31 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +295 -218
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +56 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +532 -214
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +797 -388
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +35 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +188 -196
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +83 -90
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +41 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +41 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +401 -403
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +253 -261
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +60 -68
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +36 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +35 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +21 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +22 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +21 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +39 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +47 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -45
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -45
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +330 -338
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +1545 -1194
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +57 -65
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +83 -91
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +119 -133
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +30 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +165 -174
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +104 -112
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +42 -50
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +49 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +46 -54
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +110 -117
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +41 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +40 -46
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +37 -45
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -27
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +134 -114
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +25 -31
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +66 -66
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +174 -182
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +25 -33
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +27 -35
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +191 -199
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +32 -40
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +189 -163
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +59 -64
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +71 -79
- data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +210 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +49 -55
- data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +38 -46
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +133 -142
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +67 -73
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +56 -62
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +80 -88
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +70 -78
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +56 -64
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +87 -94
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +54 -62
- data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +55 -63
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -48
- data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +36 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +74 -82
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +152 -160
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +45 -52
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +76 -84
- data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +37 -45
- data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +39 -47
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +76 -84
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +37 -45
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +278 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +37 -45
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +36 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +36 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +36 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +36 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +37 -45
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +368 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +40 -48
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +54 -62
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +40 -47
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +44 -52
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +307 -316
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +486 -492
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +44 -52
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +128 -147
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +43 -92
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +179 -0
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +897 -0
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +162 -0
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +26 -34
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +48 -56
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +47 -55
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +47 -55
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -28
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +93 -101
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +228 -225
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +59 -67
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +50 -58
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +57 -65
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +76 -86
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +43 -51
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +159 -167
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +93 -101
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +85 -93
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +88 -96
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +142 -150
- data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +147 -0
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +31 -223
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +626 -0
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +291 -0
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +287 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +259 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +42 -1455
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +368 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +221 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +240 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +270 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +292 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +179 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +200 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +212 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +357 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +162 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +783 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +289 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +194 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +194 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +71 -79
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +64 -72
- data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +29 -37
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +38 -46
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +38 -46
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +38 -46
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +38 -46
- data/vendor/local/share/doc/groonga/en/html/search.html +13 -24
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +27 -35
- data/vendor/local/share/doc/groonga/en/html/server/http.html +18 -26
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +94 -102
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +18 -26
- data/vendor/local/share/doc/groonga/en/html/server/package.html +101 -109
- data/vendor/local/share/doc/groonga/en/html/spec.html +19 -27
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +207 -215
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +39 -39
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +15 -23
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +46 -50
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +27 -35
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +26 -31
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +17 -25
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +46 -54
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +63 -71
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +30 -38
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +88 -97
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +19 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +61 -69
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +108 -116
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +24 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +19 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +32 -40
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +52 -60
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +113 -4
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +46 -19
- data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +10 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/{jquery-3.1.0.js → jquery-3.2.1.js} +474 -295
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_static/language_data.js +124 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +70 -150
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/client.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/community.html +29 -37
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +23 -31
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +50 -58
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +43 -48
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +47 -51
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +26 -34
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +18 -26
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +23 -31
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +162 -162
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +16 -24
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +26 -34
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +50 -58
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +28 -36
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -25
- data/vendor/local/share/doc/groonga/ja/html/development.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +32 -37
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +50 -28
- data/vendor/local/share/doc/groonga/ja/html/index.html +247 -233
- data/vendor/local/share/doc/groonga/ja/html/install.html +41 -45
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -52
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +52 -121
- data/vendor/local/share/doc/groonga/ja/html/install/docker.html +155 -0
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +40 -48
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +28 -36
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +116 -124
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +28 -36
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +43 -51
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -37
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +30 -36
- data/vendor/local/share/doc/groonga/ja/html/news.html +1234 -384
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +82 -82
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +146 -154
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +25 -33
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +191 -199
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +41 -49
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +283 -291
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +229 -237
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +274 -280
- data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +475 -593
- data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +313 -390
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +31 -39
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +208 -198
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +70 -78
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +50 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +57 -72
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +107 -139
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +137 -173
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +40 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +46 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +184 -244
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +99 -131
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +57 -77
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +100 -120
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +71 -95
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +75 -99
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +37 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +54 -70
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +71 -95
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +487 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +49 -65
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +286 -352
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +64 -84
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +44 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +219 -299
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +116 -156
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +70 -93
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +42 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +36 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +94 -118
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +39 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +76 -84
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +76 -84
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +25 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +51 -59
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +20 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +21 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +27 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +101 -109
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +39 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +84 -72
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +30 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +104 -112
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +271 -237
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +100 -102
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +37 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +39 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +39 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +34 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +70 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +59 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +300 -126
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +212 -80
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +42 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +40 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +41 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +57 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +32 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +30 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +246 -178
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +51 -59
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +479 -175
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +718 -326
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +34 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +145 -153
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +78 -85
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +40 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +360 -362
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +221 -229
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +47 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +32 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +33 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +20 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +21 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +20 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +42 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +57 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +317 -325
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +1246 -917
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +50 -58
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +77 -85
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +109 -123
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +29 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +131 -140
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +87 -95
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +44 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +93 -100
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +40 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +39 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +125 -107
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +23 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +62 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +132 -140
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +23 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +25 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +166 -174
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +31 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +189 -165
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +59 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +69 -77
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +208 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +48 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +37 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +115 -124
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +66 -72
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +55 -61
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +69 -77
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +60 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +54 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +85 -93
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +54 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +54 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +39 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +67 -75
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +130 -138
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +44 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +61 -69
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +63 -71
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +276 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +36 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +353 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +39 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +52 -61
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +200 -208
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +375 -382
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +39 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +125 -144
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +36 -70
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +168 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +887 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +160 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +26 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +41 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +42 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +68 -76
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +178 -184
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +38 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +39 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +63 -73
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +43 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +130 -138
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +72 -80
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +68 -76
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +76 -86
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +129 -137
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +145 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +31 -215
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +617 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +289 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +284 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +233 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +42 -1349
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +344 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +219 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +237 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +267 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +287 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +179 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +199 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +209 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +344 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +160 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +764 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +284 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +191 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +191 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +65 -73
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +48 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +29 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +37 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +37 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +37 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +37 -45
- data/vendor/local/share/doc/groonga/ja/html/search.html +13 -24
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +22 -30
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -25
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +82 -90
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +16 -24
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +99 -107
- data/vendor/local/share/doc/groonga/ja/html/spec.html +19 -27
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +201 -209
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +44 -48
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +21 -29
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +24 -29
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +16 -24
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +32 -40
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +62 -70
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -30
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +77 -86
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +15 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +56 -64
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +84 -92
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +20 -28
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -26
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +21 -29
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +43 -51
- data/vendor/local/share/doc/pcre/AUTHORS +3 -3
- data/vendor/local/share/doc/pcre/ChangeLog +53 -0
- data/vendor/local/share/doc/pcre/LICENCE +3 -3
- data/vendor/local/share/doc/pcre/NEWS +6 -0
- data/vendor/local/share/doc/pcre/html/NON-AUTOTOOLS-BUILD.txt +8 -7
- data/vendor/local/share/groonga/mruby/LEGAL +35 -35
- data/vendor/local/share/license/cv2pdb/{README → README.MD} +28 -10
- data/vendor/local/share/license/groonga-normalizer-mysql/README.md +14 -22
- data/vendor/local/share/license/lz4/LICENSE +2 -2
- data/vendor/local/share/license/mruby/AUTHORS +3 -0
- data/vendor/local/share/license/mruby/MITL +1 -1
- data/vendor/local/share/license/mruby/README.md +1 -1
- data/vendor/local/share/license/msgpack/README.md +5 -34
- data/vendor/local/share/license/pcre/LICENCE +3 -3
- data/vendor/local/share/man/man1/lz4.1 +221 -86
- data/vendor/local/share/man/man1/lz4c.1 +222 -32
- data/vendor/local/share/man/man1/lz4cat.1 +221 -30
- data/vendor/local/share/man/man1/unlz4.1 +223 -0
- metadata +231 -87
- data/lib/2.1/groonga.so +0 -0
- data/vendor/local/lib/groonga/plugins/expression_rewriters/optimizer.rb +0 -147
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/options.rb +0 -14
- data/vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/comment-bright.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/comment-close.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/comment.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +0 -808
- data/vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/comment-close.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/comment.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +0 -808
@@ -0,0 +1,86 @@
|
|
1
|
+
//
|
2
|
+
// MessagePack for C++ static resolution routine
|
3
|
+
//
|
4
|
+
// Copyright (C) 2017 KONDO Takatoshi
|
5
|
+
//
|
6
|
+
// Distributed under the Boost Software License, Version 1.0.
|
7
|
+
// (See accompanying file LICENSE_1_0.txt or copy at
|
8
|
+
// http://www.boost.org/LICENSE_1_0.txt)
|
9
|
+
//
|
10
|
+
#ifndef MSGPACK_V1_TYPE_STRING_VIEW_HPP
|
11
|
+
#define MSGPACK_V1_TYPE_STRING_VIEW_HPP
|
12
|
+
|
13
|
+
#if __cplusplus >= 201703
|
14
|
+
|
15
|
+
#include "msgpack/versioning.hpp"
|
16
|
+
#include "msgpack/adaptor/adaptor_base.hpp"
|
17
|
+
#include "msgpack/adaptor/check_container_size.hpp"
|
18
|
+
|
19
|
+
#include <string_view>
|
20
|
+
|
21
|
+
namespace msgpack {
|
22
|
+
|
23
|
+
/// @cond
|
24
|
+
MSGPACK_API_VERSION_NAMESPACE(v1) {
|
25
|
+
/// @endcond
|
26
|
+
|
27
|
+
namespace adaptor {
|
28
|
+
|
29
|
+
template <>
|
30
|
+
struct convert<std::string_view> {
|
31
|
+
msgpack::object const& operator()(msgpack::object const& o, std::string_view& v) const {
|
32
|
+
switch (o.type) {
|
33
|
+
case msgpack::type::BIN:
|
34
|
+
v = std::string_view(o.via.bin.ptr, o.via.bin.size);
|
35
|
+
break;
|
36
|
+
case msgpack::type::STR:
|
37
|
+
v = std::string_view(o.via.str.ptr, o.via.str.size);
|
38
|
+
break;
|
39
|
+
default:
|
40
|
+
throw msgpack::type_error();
|
41
|
+
break;
|
42
|
+
}
|
43
|
+
return o;
|
44
|
+
}
|
45
|
+
};
|
46
|
+
|
47
|
+
template <>
|
48
|
+
struct pack<std::string_view> {
|
49
|
+
template <typename Stream>
|
50
|
+
msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const std::string_view& v) const {
|
51
|
+
uint32_t size = checked_get_container_size(v.size());
|
52
|
+
o.pack_str(size);
|
53
|
+
o.pack_str_body(v.data(), size);
|
54
|
+
return o;
|
55
|
+
}
|
56
|
+
};
|
57
|
+
|
58
|
+
template <>
|
59
|
+
struct object<std::string_view> {
|
60
|
+
void operator()(msgpack::object& o, const std::string_view& v) const {
|
61
|
+
uint32_t size = checked_get_container_size(v.size());
|
62
|
+
o.type = msgpack::type::STR;
|
63
|
+
o.via.str.ptr = v.data();
|
64
|
+
o.via.str.size = size;
|
65
|
+
}
|
66
|
+
};
|
67
|
+
|
68
|
+
template <>
|
69
|
+
struct object_with_zone<std::string_view> {
|
70
|
+
void operator()(msgpack::object::with_zone& o, const std::string_view& v) const {
|
71
|
+
static_cast<msgpack::object&>(o) << v;
|
72
|
+
}
|
73
|
+
};
|
74
|
+
|
75
|
+
|
76
|
+
} // namespace adaptor
|
77
|
+
|
78
|
+
/// @cond
|
79
|
+
} // MSGPACK_API_VERSION_NAMESPACE(v1)
|
80
|
+
/// @endcond
|
81
|
+
|
82
|
+
} // namespace msgpack
|
83
|
+
|
84
|
+
#endif // __cplusplus >= 201703
|
85
|
+
|
86
|
+
#endif // MSGPACK_V1_TYPE_STRING_VIEW_HPP
|
@@ -83,7 +83,7 @@ struct object_with_zone<std::deque<T, Alloc> > {
|
|
83
83
|
o.via.array.size = 0;
|
84
84
|
} else {
|
85
85
|
uint32_t size = checked_get_container_size(v.size());
|
86
|
-
msgpack::object* p = static_cast<msgpack::object*>(o.zone.allocate_align(sizeof(msgpack::object)*size));
|
86
|
+
msgpack::object* p = static_cast<msgpack::object*>(o.zone.allocate_align(sizeof(msgpack::object)*size, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
87
87
|
msgpack::object* const pend = p + size;
|
88
88
|
o.via.array.ptr = p;
|
89
89
|
o.via.array.size = size;
|
@@ -67,13 +67,15 @@ struct define_array<A0> {
|
|
67
67
|
switch(size) {
|
68
68
|
default:
|
69
69
|
case 1: ptr[0].convert(a0);
|
70
|
+
// fallthrough
|
71
|
+
|
70
72
|
}
|
71
73
|
}
|
72
74
|
}
|
73
75
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
74
76
|
{
|
75
77
|
o->type = msgpack::type::ARRAY;
|
76
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*1));
|
78
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*1, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
77
79
|
o->via.array.size = 1;
|
78
80
|
|
79
81
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -105,14 +107,18 @@ struct define_array<A0, A1> {
|
|
105
107
|
switch(size) {
|
106
108
|
default:
|
107
109
|
case 2: ptr[1].convert(a1);
|
110
|
+
// fallthrough
|
111
|
+
|
108
112
|
case 1: ptr[0].convert(a0);
|
113
|
+
// fallthrough
|
114
|
+
|
109
115
|
}
|
110
116
|
}
|
111
117
|
}
|
112
118
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
113
119
|
{
|
114
120
|
o->type = msgpack::type::ARRAY;
|
115
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*2));
|
121
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*2, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
116
122
|
o->via.array.size = 2;
|
117
123
|
|
118
124
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -147,15 +153,21 @@ struct define_array<A0, A1, A2> {
|
|
147
153
|
switch(size) {
|
148
154
|
default:
|
149
155
|
case 3: ptr[2].convert(a2);
|
156
|
+
// fallthrough
|
157
|
+
|
150
158
|
case 2: ptr[1].convert(a1);
|
159
|
+
// fallthrough
|
160
|
+
|
151
161
|
case 1: ptr[0].convert(a0);
|
162
|
+
// fallthrough
|
163
|
+
|
152
164
|
}
|
153
165
|
}
|
154
166
|
}
|
155
167
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
156
168
|
{
|
157
169
|
o->type = msgpack::type::ARRAY;
|
158
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*3));
|
170
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*3, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
159
171
|
o->via.array.size = 3;
|
160
172
|
|
161
173
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -193,16 +205,24 @@ struct define_array<A0, A1, A2, A3> {
|
|
193
205
|
switch(size) {
|
194
206
|
default:
|
195
207
|
case 4: ptr[3].convert(a3);
|
208
|
+
// fallthrough
|
209
|
+
|
196
210
|
case 3: ptr[2].convert(a2);
|
211
|
+
// fallthrough
|
212
|
+
|
197
213
|
case 2: ptr[1].convert(a1);
|
214
|
+
// fallthrough
|
215
|
+
|
198
216
|
case 1: ptr[0].convert(a0);
|
217
|
+
// fallthrough
|
218
|
+
|
199
219
|
}
|
200
220
|
}
|
201
221
|
}
|
202
222
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
203
223
|
{
|
204
224
|
o->type = msgpack::type::ARRAY;
|
205
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*4));
|
225
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*4, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
206
226
|
o->via.array.size = 4;
|
207
227
|
|
208
228
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -243,17 +263,27 @@ struct define_array<A0, A1, A2, A3, A4> {
|
|
243
263
|
switch(size) {
|
244
264
|
default:
|
245
265
|
case 5: ptr[4].convert(a4);
|
266
|
+
// fallthrough
|
267
|
+
|
246
268
|
case 4: ptr[3].convert(a3);
|
269
|
+
// fallthrough
|
270
|
+
|
247
271
|
case 3: ptr[2].convert(a2);
|
272
|
+
// fallthrough
|
273
|
+
|
248
274
|
case 2: ptr[1].convert(a1);
|
275
|
+
// fallthrough
|
276
|
+
|
249
277
|
case 1: ptr[0].convert(a0);
|
278
|
+
// fallthrough
|
279
|
+
|
250
280
|
}
|
251
281
|
}
|
252
282
|
}
|
253
283
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
254
284
|
{
|
255
285
|
o->type = msgpack::type::ARRAY;
|
256
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*5));
|
286
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*5, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
257
287
|
o->via.array.size = 5;
|
258
288
|
|
259
289
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -297,18 +327,30 @@ struct define_array<A0, A1, A2, A3, A4, A5> {
|
|
297
327
|
switch(size) {
|
298
328
|
default:
|
299
329
|
case 6: ptr[5].convert(a5);
|
330
|
+
// fallthrough
|
331
|
+
|
300
332
|
case 5: ptr[4].convert(a4);
|
333
|
+
// fallthrough
|
334
|
+
|
301
335
|
case 4: ptr[3].convert(a3);
|
336
|
+
// fallthrough
|
337
|
+
|
302
338
|
case 3: ptr[2].convert(a2);
|
339
|
+
// fallthrough
|
340
|
+
|
303
341
|
case 2: ptr[1].convert(a1);
|
342
|
+
// fallthrough
|
343
|
+
|
304
344
|
case 1: ptr[0].convert(a0);
|
345
|
+
// fallthrough
|
346
|
+
|
305
347
|
}
|
306
348
|
}
|
307
349
|
}
|
308
350
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
309
351
|
{
|
310
352
|
o->type = msgpack::type::ARRAY;
|
311
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*6));
|
353
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*6, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
312
354
|
o->via.array.size = 6;
|
313
355
|
|
314
356
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -355,19 +397,33 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6> {
|
|
355
397
|
switch(size) {
|
356
398
|
default:
|
357
399
|
case 7: ptr[6].convert(a6);
|
400
|
+
// fallthrough
|
401
|
+
|
358
402
|
case 6: ptr[5].convert(a5);
|
403
|
+
// fallthrough
|
404
|
+
|
359
405
|
case 5: ptr[4].convert(a4);
|
406
|
+
// fallthrough
|
407
|
+
|
360
408
|
case 4: ptr[3].convert(a3);
|
409
|
+
// fallthrough
|
410
|
+
|
361
411
|
case 3: ptr[2].convert(a2);
|
412
|
+
// fallthrough
|
413
|
+
|
362
414
|
case 2: ptr[1].convert(a1);
|
415
|
+
// fallthrough
|
416
|
+
|
363
417
|
case 1: ptr[0].convert(a0);
|
418
|
+
// fallthrough
|
419
|
+
|
364
420
|
}
|
365
421
|
}
|
366
422
|
}
|
367
423
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
368
424
|
{
|
369
425
|
o->type = msgpack::type::ARRAY;
|
370
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*7));
|
426
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*7, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
371
427
|
o->via.array.size = 7;
|
372
428
|
|
373
429
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -417,20 +473,36 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7> {
|
|
417
473
|
switch(size) {
|
418
474
|
default:
|
419
475
|
case 8: ptr[7].convert(a7);
|
476
|
+
// fallthrough
|
477
|
+
|
420
478
|
case 7: ptr[6].convert(a6);
|
479
|
+
// fallthrough
|
480
|
+
|
421
481
|
case 6: ptr[5].convert(a5);
|
482
|
+
// fallthrough
|
483
|
+
|
422
484
|
case 5: ptr[4].convert(a4);
|
485
|
+
// fallthrough
|
486
|
+
|
423
487
|
case 4: ptr[3].convert(a3);
|
488
|
+
// fallthrough
|
489
|
+
|
424
490
|
case 3: ptr[2].convert(a2);
|
491
|
+
// fallthrough
|
492
|
+
|
425
493
|
case 2: ptr[1].convert(a1);
|
494
|
+
// fallthrough
|
495
|
+
|
426
496
|
case 1: ptr[0].convert(a0);
|
497
|
+
// fallthrough
|
498
|
+
|
427
499
|
}
|
428
500
|
}
|
429
501
|
}
|
430
502
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
431
503
|
{
|
432
504
|
o->type = msgpack::type::ARRAY;
|
433
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*8));
|
505
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*8, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
434
506
|
o->via.array.size = 8;
|
435
507
|
|
436
508
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -483,21 +555,39 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8> {
|
|
483
555
|
switch(size) {
|
484
556
|
default:
|
485
557
|
case 9: ptr[8].convert(a8);
|
558
|
+
// fallthrough
|
559
|
+
|
486
560
|
case 8: ptr[7].convert(a7);
|
561
|
+
// fallthrough
|
562
|
+
|
487
563
|
case 7: ptr[6].convert(a6);
|
564
|
+
// fallthrough
|
565
|
+
|
488
566
|
case 6: ptr[5].convert(a5);
|
567
|
+
// fallthrough
|
568
|
+
|
489
569
|
case 5: ptr[4].convert(a4);
|
570
|
+
// fallthrough
|
571
|
+
|
490
572
|
case 4: ptr[3].convert(a3);
|
573
|
+
// fallthrough
|
574
|
+
|
491
575
|
case 3: ptr[2].convert(a2);
|
576
|
+
// fallthrough
|
577
|
+
|
492
578
|
case 2: ptr[1].convert(a1);
|
579
|
+
// fallthrough
|
580
|
+
|
493
581
|
case 1: ptr[0].convert(a0);
|
582
|
+
// fallthrough
|
583
|
+
|
494
584
|
}
|
495
585
|
}
|
496
586
|
}
|
497
587
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
498
588
|
{
|
499
589
|
o->type = msgpack::type::ARRAY;
|
500
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*9));
|
590
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*9, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
501
591
|
o->via.array.size = 9;
|
502
592
|
|
503
593
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -553,22 +643,42 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9> {
|
|
553
643
|
switch(size) {
|
554
644
|
default:
|
555
645
|
case 10: ptr[9].convert(a9);
|
646
|
+
// fallthrough
|
647
|
+
|
556
648
|
case 9: ptr[8].convert(a8);
|
649
|
+
// fallthrough
|
650
|
+
|
557
651
|
case 8: ptr[7].convert(a7);
|
652
|
+
// fallthrough
|
653
|
+
|
558
654
|
case 7: ptr[6].convert(a6);
|
655
|
+
// fallthrough
|
656
|
+
|
559
657
|
case 6: ptr[5].convert(a5);
|
658
|
+
// fallthrough
|
659
|
+
|
560
660
|
case 5: ptr[4].convert(a4);
|
661
|
+
// fallthrough
|
662
|
+
|
561
663
|
case 4: ptr[3].convert(a3);
|
664
|
+
// fallthrough
|
665
|
+
|
562
666
|
case 3: ptr[2].convert(a2);
|
667
|
+
// fallthrough
|
668
|
+
|
563
669
|
case 2: ptr[1].convert(a1);
|
670
|
+
// fallthrough
|
671
|
+
|
564
672
|
case 1: ptr[0].convert(a0);
|
673
|
+
// fallthrough
|
674
|
+
|
565
675
|
}
|
566
676
|
}
|
567
677
|
}
|
568
678
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
569
679
|
{
|
570
680
|
o->type = msgpack::type::ARRAY;
|
571
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*10));
|
681
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*10, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
572
682
|
o->via.array.size = 10;
|
573
683
|
|
574
684
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -627,23 +737,45 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> {
|
|
627
737
|
switch(size) {
|
628
738
|
default:
|
629
739
|
case 11: ptr[10].convert(a10);
|
740
|
+
// fallthrough
|
741
|
+
|
630
742
|
case 10: ptr[9].convert(a9);
|
743
|
+
// fallthrough
|
744
|
+
|
631
745
|
case 9: ptr[8].convert(a8);
|
746
|
+
// fallthrough
|
747
|
+
|
632
748
|
case 8: ptr[7].convert(a7);
|
749
|
+
// fallthrough
|
750
|
+
|
633
751
|
case 7: ptr[6].convert(a6);
|
752
|
+
// fallthrough
|
753
|
+
|
634
754
|
case 6: ptr[5].convert(a5);
|
755
|
+
// fallthrough
|
756
|
+
|
635
757
|
case 5: ptr[4].convert(a4);
|
758
|
+
// fallthrough
|
759
|
+
|
636
760
|
case 4: ptr[3].convert(a3);
|
761
|
+
// fallthrough
|
762
|
+
|
637
763
|
case 3: ptr[2].convert(a2);
|
764
|
+
// fallthrough
|
765
|
+
|
638
766
|
case 2: ptr[1].convert(a1);
|
767
|
+
// fallthrough
|
768
|
+
|
639
769
|
case 1: ptr[0].convert(a0);
|
770
|
+
// fallthrough
|
771
|
+
|
640
772
|
}
|
641
773
|
}
|
642
774
|
}
|
643
775
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
644
776
|
{
|
645
777
|
o->type = msgpack::type::ARRAY;
|
646
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*11));
|
778
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*11, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
647
779
|
o->via.array.size = 11;
|
648
780
|
|
649
781
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -705,24 +837,48 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11> {
|
|
705
837
|
switch(size) {
|
706
838
|
default:
|
707
839
|
case 12: ptr[11].convert(a11);
|
840
|
+
// fallthrough
|
841
|
+
|
708
842
|
case 11: ptr[10].convert(a10);
|
843
|
+
// fallthrough
|
844
|
+
|
709
845
|
case 10: ptr[9].convert(a9);
|
846
|
+
// fallthrough
|
847
|
+
|
710
848
|
case 9: ptr[8].convert(a8);
|
849
|
+
// fallthrough
|
850
|
+
|
711
851
|
case 8: ptr[7].convert(a7);
|
852
|
+
// fallthrough
|
853
|
+
|
712
854
|
case 7: ptr[6].convert(a6);
|
855
|
+
// fallthrough
|
856
|
+
|
713
857
|
case 6: ptr[5].convert(a5);
|
858
|
+
// fallthrough
|
859
|
+
|
714
860
|
case 5: ptr[4].convert(a4);
|
861
|
+
// fallthrough
|
862
|
+
|
715
863
|
case 4: ptr[3].convert(a3);
|
864
|
+
// fallthrough
|
865
|
+
|
716
866
|
case 3: ptr[2].convert(a2);
|
867
|
+
// fallthrough
|
868
|
+
|
717
869
|
case 2: ptr[1].convert(a1);
|
870
|
+
// fallthrough
|
871
|
+
|
718
872
|
case 1: ptr[0].convert(a0);
|
873
|
+
// fallthrough
|
874
|
+
|
719
875
|
}
|
720
876
|
}
|
721
877
|
}
|
722
878
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
723
879
|
{
|
724
880
|
o->type = msgpack::type::ARRAY;
|
725
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*12));
|
881
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*12, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
726
882
|
o->via.array.size = 12;
|
727
883
|
|
728
884
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -787,25 +943,51 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> {
|
|
787
943
|
switch(size) {
|
788
944
|
default:
|
789
945
|
case 13: ptr[12].convert(a12);
|
946
|
+
// fallthrough
|
947
|
+
|
790
948
|
case 12: ptr[11].convert(a11);
|
949
|
+
// fallthrough
|
950
|
+
|
791
951
|
case 11: ptr[10].convert(a10);
|
952
|
+
// fallthrough
|
953
|
+
|
792
954
|
case 10: ptr[9].convert(a9);
|
955
|
+
// fallthrough
|
956
|
+
|
793
957
|
case 9: ptr[8].convert(a8);
|
958
|
+
// fallthrough
|
959
|
+
|
794
960
|
case 8: ptr[7].convert(a7);
|
961
|
+
// fallthrough
|
962
|
+
|
795
963
|
case 7: ptr[6].convert(a6);
|
964
|
+
// fallthrough
|
965
|
+
|
796
966
|
case 6: ptr[5].convert(a5);
|
967
|
+
// fallthrough
|
968
|
+
|
797
969
|
case 5: ptr[4].convert(a4);
|
970
|
+
// fallthrough
|
971
|
+
|
798
972
|
case 4: ptr[3].convert(a3);
|
973
|
+
// fallthrough
|
974
|
+
|
799
975
|
case 3: ptr[2].convert(a2);
|
976
|
+
// fallthrough
|
977
|
+
|
800
978
|
case 2: ptr[1].convert(a1);
|
979
|
+
// fallthrough
|
980
|
+
|
801
981
|
case 1: ptr[0].convert(a0);
|
982
|
+
// fallthrough
|
983
|
+
|
802
984
|
}
|
803
985
|
}
|
804
986
|
}
|
805
987
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
806
988
|
{
|
807
989
|
o->type = msgpack::type::ARRAY;
|
808
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*13));
|
990
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*13, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
809
991
|
o->via.array.size = 13;
|
810
992
|
|
811
993
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -873,26 +1055,54 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>
|
|
873
1055
|
switch(size) {
|
874
1056
|
default:
|
875
1057
|
case 14: ptr[13].convert(a13);
|
1058
|
+
// fallthrough
|
1059
|
+
|
876
1060
|
case 13: ptr[12].convert(a12);
|
1061
|
+
// fallthrough
|
1062
|
+
|
877
1063
|
case 12: ptr[11].convert(a11);
|
1064
|
+
// fallthrough
|
1065
|
+
|
878
1066
|
case 11: ptr[10].convert(a10);
|
1067
|
+
// fallthrough
|
1068
|
+
|
879
1069
|
case 10: ptr[9].convert(a9);
|
1070
|
+
// fallthrough
|
1071
|
+
|
880
1072
|
case 9: ptr[8].convert(a8);
|
1073
|
+
// fallthrough
|
1074
|
+
|
881
1075
|
case 8: ptr[7].convert(a7);
|
1076
|
+
// fallthrough
|
1077
|
+
|
882
1078
|
case 7: ptr[6].convert(a6);
|
1079
|
+
// fallthrough
|
1080
|
+
|
883
1081
|
case 6: ptr[5].convert(a5);
|
1082
|
+
// fallthrough
|
1083
|
+
|
884
1084
|
case 5: ptr[4].convert(a4);
|
1085
|
+
// fallthrough
|
1086
|
+
|
885
1087
|
case 4: ptr[3].convert(a3);
|
1088
|
+
// fallthrough
|
1089
|
+
|
886
1090
|
case 3: ptr[2].convert(a2);
|
1091
|
+
// fallthrough
|
1092
|
+
|
887
1093
|
case 2: ptr[1].convert(a1);
|
1094
|
+
// fallthrough
|
1095
|
+
|
888
1096
|
case 1: ptr[0].convert(a0);
|
1097
|
+
// fallthrough
|
1098
|
+
|
889
1099
|
}
|
890
1100
|
}
|
891
1101
|
}
|
892
1102
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
893
1103
|
{
|
894
1104
|
o->type = msgpack::type::ARRAY;
|
895
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*14));
|
1105
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*14, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
896
1106
|
o->via.array.size = 14;
|
897
1107
|
|
898
1108
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -963,27 +1173,57 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
963
1173
|
switch(size) {
|
964
1174
|
default:
|
965
1175
|
case 15: ptr[14].convert(a14);
|
1176
|
+
// fallthrough
|
1177
|
+
|
966
1178
|
case 14: ptr[13].convert(a13);
|
1179
|
+
// fallthrough
|
1180
|
+
|
967
1181
|
case 13: ptr[12].convert(a12);
|
1182
|
+
// fallthrough
|
1183
|
+
|
968
1184
|
case 12: ptr[11].convert(a11);
|
1185
|
+
// fallthrough
|
1186
|
+
|
969
1187
|
case 11: ptr[10].convert(a10);
|
1188
|
+
// fallthrough
|
1189
|
+
|
970
1190
|
case 10: ptr[9].convert(a9);
|
1191
|
+
// fallthrough
|
1192
|
+
|
971
1193
|
case 9: ptr[8].convert(a8);
|
1194
|
+
// fallthrough
|
1195
|
+
|
972
1196
|
case 8: ptr[7].convert(a7);
|
1197
|
+
// fallthrough
|
1198
|
+
|
973
1199
|
case 7: ptr[6].convert(a6);
|
1200
|
+
// fallthrough
|
1201
|
+
|
974
1202
|
case 6: ptr[5].convert(a5);
|
1203
|
+
// fallthrough
|
1204
|
+
|
975
1205
|
case 5: ptr[4].convert(a4);
|
1206
|
+
// fallthrough
|
1207
|
+
|
976
1208
|
case 4: ptr[3].convert(a3);
|
1209
|
+
// fallthrough
|
1210
|
+
|
977
1211
|
case 3: ptr[2].convert(a2);
|
1212
|
+
// fallthrough
|
1213
|
+
|
978
1214
|
case 2: ptr[1].convert(a1);
|
1215
|
+
// fallthrough
|
1216
|
+
|
979
1217
|
case 1: ptr[0].convert(a0);
|
1218
|
+
// fallthrough
|
1219
|
+
|
980
1220
|
}
|
981
1221
|
}
|
982
1222
|
}
|
983
1223
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
984
1224
|
{
|
985
1225
|
o->type = msgpack::type::ARRAY;
|
986
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*15));
|
1226
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*15, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
987
1227
|
o->via.array.size = 15;
|
988
1228
|
|
989
1229
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1057,28 +1297,60 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1057
1297
|
switch(size) {
|
1058
1298
|
default:
|
1059
1299
|
case 16: ptr[15].convert(a15);
|
1300
|
+
// fallthrough
|
1301
|
+
|
1060
1302
|
case 15: ptr[14].convert(a14);
|
1303
|
+
// fallthrough
|
1304
|
+
|
1061
1305
|
case 14: ptr[13].convert(a13);
|
1306
|
+
// fallthrough
|
1307
|
+
|
1062
1308
|
case 13: ptr[12].convert(a12);
|
1309
|
+
// fallthrough
|
1310
|
+
|
1063
1311
|
case 12: ptr[11].convert(a11);
|
1312
|
+
// fallthrough
|
1313
|
+
|
1064
1314
|
case 11: ptr[10].convert(a10);
|
1315
|
+
// fallthrough
|
1316
|
+
|
1065
1317
|
case 10: ptr[9].convert(a9);
|
1318
|
+
// fallthrough
|
1319
|
+
|
1066
1320
|
case 9: ptr[8].convert(a8);
|
1321
|
+
// fallthrough
|
1322
|
+
|
1067
1323
|
case 8: ptr[7].convert(a7);
|
1324
|
+
// fallthrough
|
1325
|
+
|
1068
1326
|
case 7: ptr[6].convert(a6);
|
1327
|
+
// fallthrough
|
1328
|
+
|
1069
1329
|
case 6: ptr[5].convert(a5);
|
1330
|
+
// fallthrough
|
1331
|
+
|
1070
1332
|
case 5: ptr[4].convert(a4);
|
1333
|
+
// fallthrough
|
1334
|
+
|
1071
1335
|
case 4: ptr[3].convert(a3);
|
1336
|
+
// fallthrough
|
1337
|
+
|
1072
1338
|
case 3: ptr[2].convert(a2);
|
1339
|
+
// fallthrough
|
1340
|
+
|
1073
1341
|
case 2: ptr[1].convert(a1);
|
1342
|
+
// fallthrough
|
1343
|
+
|
1074
1344
|
case 1: ptr[0].convert(a0);
|
1345
|
+
// fallthrough
|
1346
|
+
|
1075
1347
|
}
|
1076
1348
|
}
|
1077
1349
|
}
|
1078
1350
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1079
1351
|
{
|
1080
1352
|
o->type = msgpack::type::ARRAY;
|
1081
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*16));
|
1353
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*16, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1082
1354
|
o->via.array.size = 16;
|
1083
1355
|
|
1084
1356
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1155,29 +1427,63 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1155
1427
|
switch(size) {
|
1156
1428
|
default:
|
1157
1429
|
case 17: ptr[16].convert(a16);
|
1430
|
+
// fallthrough
|
1431
|
+
|
1158
1432
|
case 16: ptr[15].convert(a15);
|
1433
|
+
// fallthrough
|
1434
|
+
|
1159
1435
|
case 15: ptr[14].convert(a14);
|
1436
|
+
// fallthrough
|
1437
|
+
|
1160
1438
|
case 14: ptr[13].convert(a13);
|
1439
|
+
// fallthrough
|
1440
|
+
|
1161
1441
|
case 13: ptr[12].convert(a12);
|
1442
|
+
// fallthrough
|
1443
|
+
|
1162
1444
|
case 12: ptr[11].convert(a11);
|
1445
|
+
// fallthrough
|
1446
|
+
|
1163
1447
|
case 11: ptr[10].convert(a10);
|
1448
|
+
// fallthrough
|
1449
|
+
|
1164
1450
|
case 10: ptr[9].convert(a9);
|
1451
|
+
// fallthrough
|
1452
|
+
|
1165
1453
|
case 9: ptr[8].convert(a8);
|
1454
|
+
// fallthrough
|
1455
|
+
|
1166
1456
|
case 8: ptr[7].convert(a7);
|
1457
|
+
// fallthrough
|
1458
|
+
|
1167
1459
|
case 7: ptr[6].convert(a6);
|
1460
|
+
// fallthrough
|
1461
|
+
|
1168
1462
|
case 6: ptr[5].convert(a5);
|
1463
|
+
// fallthrough
|
1464
|
+
|
1169
1465
|
case 5: ptr[4].convert(a4);
|
1466
|
+
// fallthrough
|
1467
|
+
|
1170
1468
|
case 4: ptr[3].convert(a3);
|
1469
|
+
// fallthrough
|
1470
|
+
|
1171
1471
|
case 3: ptr[2].convert(a2);
|
1472
|
+
// fallthrough
|
1473
|
+
|
1172
1474
|
case 2: ptr[1].convert(a1);
|
1475
|
+
// fallthrough
|
1476
|
+
|
1173
1477
|
case 1: ptr[0].convert(a0);
|
1478
|
+
// fallthrough
|
1479
|
+
|
1174
1480
|
}
|
1175
1481
|
}
|
1176
1482
|
}
|
1177
1483
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1178
1484
|
{
|
1179
1485
|
o->type = msgpack::type::ARRAY;
|
1180
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*17));
|
1486
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*17, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1181
1487
|
o->via.array.size = 17;
|
1182
1488
|
|
1183
1489
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1257,30 +1563,66 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1257
1563
|
switch(size) {
|
1258
1564
|
default:
|
1259
1565
|
case 18: ptr[17].convert(a17);
|
1566
|
+
// fallthrough
|
1567
|
+
|
1260
1568
|
case 17: ptr[16].convert(a16);
|
1569
|
+
// fallthrough
|
1570
|
+
|
1261
1571
|
case 16: ptr[15].convert(a15);
|
1572
|
+
// fallthrough
|
1573
|
+
|
1262
1574
|
case 15: ptr[14].convert(a14);
|
1575
|
+
// fallthrough
|
1576
|
+
|
1263
1577
|
case 14: ptr[13].convert(a13);
|
1578
|
+
// fallthrough
|
1579
|
+
|
1264
1580
|
case 13: ptr[12].convert(a12);
|
1581
|
+
// fallthrough
|
1582
|
+
|
1265
1583
|
case 12: ptr[11].convert(a11);
|
1584
|
+
// fallthrough
|
1585
|
+
|
1266
1586
|
case 11: ptr[10].convert(a10);
|
1587
|
+
// fallthrough
|
1588
|
+
|
1267
1589
|
case 10: ptr[9].convert(a9);
|
1590
|
+
// fallthrough
|
1591
|
+
|
1268
1592
|
case 9: ptr[8].convert(a8);
|
1593
|
+
// fallthrough
|
1594
|
+
|
1269
1595
|
case 8: ptr[7].convert(a7);
|
1596
|
+
// fallthrough
|
1597
|
+
|
1270
1598
|
case 7: ptr[6].convert(a6);
|
1599
|
+
// fallthrough
|
1600
|
+
|
1271
1601
|
case 6: ptr[5].convert(a5);
|
1602
|
+
// fallthrough
|
1603
|
+
|
1272
1604
|
case 5: ptr[4].convert(a4);
|
1605
|
+
// fallthrough
|
1606
|
+
|
1273
1607
|
case 4: ptr[3].convert(a3);
|
1608
|
+
// fallthrough
|
1609
|
+
|
1274
1610
|
case 3: ptr[2].convert(a2);
|
1611
|
+
// fallthrough
|
1612
|
+
|
1275
1613
|
case 2: ptr[1].convert(a1);
|
1614
|
+
// fallthrough
|
1615
|
+
|
1276
1616
|
case 1: ptr[0].convert(a0);
|
1617
|
+
// fallthrough
|
1618
|
+
|
1277
1619
|
}
|
1278
1620
|
}
|
1279
1621
|
}
|
1280
1622
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1281
1623
|
{
|
1282
1624
|
o->type = msgpack::type::ARRAY;
|
1283
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*18));
|
1625
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*18, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1284
1626
|
o->via.array.size = 18;
|
1285
1627
|
|
1286
1628
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1363,31 +1705,69 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1363
1705
|
switch(size) {
|
1364
1706
|
default:
|
1365
1707
|
case 19: ptr[18].convert(a18);
|
1708
|
+
// fallthrough
|
1709
|
+
|
1366
1710
|
case 18: ptr[17].convert(a17);
|
1711
|
+
// fallthrough
|
1712
|
+
|
1367
1713
|
case 17: ptr[16].convert(a16);
|
1714
|
+
// fallthrough
|
1715
|
+
|
1368
1716
|
case 16: ptr[15].convert(a15);
|
1717
|
+
// fallthrough
|
1718
|
+
|
1369
1719
|
case 15: ptr[14].convert(a14);
|
1720
|
+
// fallthrough
|
1721
|
+
|
1370
1722
|
case 14: ptr[13].convert(a13);
|
1723
|
+
// fallthrough
|
1724
|
+
|
1371
1725
|
case 13: ptr[12].convert(a12);
|
1726
|
+
// fallthrough
|
1727
|
+
|
1372
1728
|
case 12: ptr[11].convert(a11);
|
1729
|
+
// fallthrough
|
1730
|
+
|
1373
1731
|
case 11: ptr[10].convert(a10);
|
1732
|
+
// fallthrough
|
1733
|
+
|
1374
1734
|
case 10: ptr[9].convert(a9);
|
1735
|
+
// fallthrough
|
1736
|
+
|
1375
1737
|
case 9: ptr[8].convert(a8);
|
1738
|
+
// fallthrough
|
1739
|
+
|
1376
1740
|
case 8: ptr[7].convert(a7);
|
1741
|
+
// fallthrough
|
1742
|
+
|
1377
1743
|
case 7: ptr[6].convert(a6);
|
1744
|
+
// fallthrough
|
1745
|
+
|
1378
1746
|
case 6: ptr[5].convert(a5);
|
1747
|
+
// fallthrough
|
1748
|
+
|
1379
1749
|
case 5: ptr[4].convert(a4);
|
1750
|
+
// fallthrough
|
1751
|
+
|
1380
1752
|
case 4: ptr[3].convert(a3);
|
1753
|
+
// fallthrough
|
1754
|
+
|
1381
1755
|
case 3: ptr[2].convert(a2);
|
1756
|
+
// fallthrough
|
1757
|
+
|
1382
1758
|
case 2: ptr[1].convert(a1);
|
1759
|
+
// fallthrough
|
1760
|
+
|
1383
1761
|
case 1: ptr[0].convert(a0);
|
1762
|
+
// fallthrough
|
1763
|
+
|
1384
1764
|
}
|
1385
1765
|
}
|
1386
1766
|
}
|
1387
1767
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1388
1768
|
{
|
1389
1769
|
o->type = msgpack::type::ARRAY;
|
1390
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*19));
|
1770
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*19, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1391
1771
|
o->via.array.size = 19;
|
1392
1772
|
|
1393
1773
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1473,32 +1853,72 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1473
1853
|
switch(size) {
|
1474
1854
|
default:
|
1475
1855
|
case 20: ptr[19].convert(a19);
|
1856
|
+
// fallthrough
|
1857
|
+
|
1476
1858
|
case 19: ptr[18].convert(a18);
|
1859
|
+
// fallthrough
|
1860
|
+
|
1477
1861
|
case 18: ptr[17].convert(a17);
|
1862
|
+
// fallthrough
|
1863
|
+
|
1478
1864
|
case 17: ptr[16].convert(a16);
|
1865
|
+
// fallthrough
|
1866
|
+
|
1479
1867
|
case 16: ptr[15].convert(a15);
|
1868
|
+
// fallthrough
|
1869
|
+
|
1480
1870
|
case 15: ptr[14].convert(a14);
|
1871
|
+
// fallthrough
|
1872
|
+
|
1481
1873
|
case 14: ptr[13].convert(a13);
|
1874
|
+
// fallthrough
|
1875
|
+
|
1482
1876
|
case 13: ptr[12].convert(a12);
|
1877
|
+
// fallthrough
|
1878
|
+
|
1483
1879
|
case 12: ptr[11].convert(a11);
|
1880
|
+
// fallthrough
|
1881
|
+
|
1484
1882
|
case 11: ptr[10].convert(a10);
|
1883
|
+
// fallthrough
|
1884
|
+
|
1485
1885
|
case 10: ptr[9].convert(a9);
|
1886
|
+
// fallthrough
|
1887
|
+
|
1486
1888
|
case 9: ptr[8].convert(a8);
|
1889
|
+
// fallthrough
|
1890
|
+
|
1487
1891
|
case 8: ptr[7].convert(a7);
|
1892
|
+
// fallthrough
|
1893
|
+
|
1488
1894
|
case 7: ptr[6].convert(a6);
|
1895
|
+
// fallthrough
|
1896
|
+
|
1489
1897
|
case 6: ptr[5].convert(a5);
|
1898
|
+
// fallthrough
|
1899
|
+
|
1490
1900
|
case 5: ptr[4].convert(a4);
|
1901
|
+
// fallthrough
|
1902
|
+
|
1491
1903
|
case 4: ptr[3].convert(a3);
|
1904
|
+
// fallthrough
|
1905
|
+
|
1492
1906
|
case 3: ptr[2].convert(a2);
|
1907
|
+
// fallthrough
|
1908
|
+
|
1493
1909
|
case 2: ptr[1].convert(a1);
|
1910
|
+
// fallthrough
|
1911
|
+
|
1494
1912
|
case 1: ptr[0].convert(a0);
|
1913
|
+
// fallthrough
|
1914
|
+
|
1495
1915
|
}
|
1496
1916
|
}
|
1497
1917
|
}
|
1498
1918
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1499
1919
|
{
|
1500
1920
|
o->type = msgpack::type::ARRAY;
|
1501
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*20));
|
1921
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*20, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1502
1922
|
o->via.array.size = 20;
|
1503
1923
|
|
1504
1924
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1587,33 +2007,75 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1587
2007
|
switch(size) {
|
1588
2008
|
default:
|
1589
2009
|
case 21: ptr[20].convert(a20);
|
2010
|
+
// fallthrough
|
2011
|
+
|
1590
2012
|
case 20: ptr[19].convert(a19);
|
2013
|
+
// fallthrough
|
2014
|
+
|
1591
2015
|
case 19: ptr[18].convert(a18);
|
2016
|
+
// fallthrough
|
2017
|
+
|
1592
2018
|
case 18: ptr[17].convert(a17);
|
2019
|
+
// fallthrough
|
2020
|
+
|
1593
2021
|
case 17: ptr[16].convert(a16);
|
2022
|
+
// fallthrough
|
2023
|
+
|
1594
2024
|
case 16: ptr[15].convert(a15);
|
2025
|
+
// fallthrough
|
2026
|
+
|
1595
2027
|
case 15: ptr[14].convert(a14);
|
2028
|
+
// fallthrough
|
2029
|
+
|
1596
2030
|
case 14: ptr[13].convert(a13);
|
2031
|
+
// fallthrough
|
2032
|
+
|
1597
2033
|
case 13: ptr[12].convert(a12);
|
2034
|
+
// fallthrough
|
2035
|
+
|
1598
2036
|
case 12: ptr[11].convert(a11);
|
2037
|
+
// fallthrough
|
2038
|
+
|
1599
2039
|
case 11: ptr[10].convert(a10);
|
2040
|
+
// fallthrough
|
2041
|
+
|
1600
2042
|
case 10: ptr[9].convert(a9);
|
2043
|
+
// fallthrough
|
2044
|
+
|
1601
2045
|
case 9: ptr[8].convert(a8);
|
2046
|
+
// fallthrough
|
2047
|
+
|
1602
2048
|
case 8: ptr[7].convert(a7);
|
2049
|
+
// fallthrough
|
2050
|
+
|
1603
2051
|
case 7: ptr[6].convert(a6);
|
2052
|
+
// fallthrough
|
2053
|
+
|
1604
2054
|
case 6: ptr[5].convert(a5);
|
2055
|
+
// fallthrough
|
2056
|
+
|
1605
2057
|
case 5: ptr[4].convert(a4);
|
2058
|
+
// fallthrough
|
2059
|
+
|
1606
2060
|
case 4: ptr[3].convert(a3);
|
2061
|
+
// fallthrough
|
2062
|
+
|
1607
2063
|
case 3: ptr[2].convert(a2);
|
2064
|
+
// fallthrough
|
2065
|
+
|
1608
2066
|
case 2: ptr[1].convert(a1);
|
2067
|
+
// fallthrough
|
2068
|
+
|
1609
2069
|
case 1: ptr[0].convert(a0);
|
2070
|
+
// fallthrough
|
2071
|
+
|
1610
2072
|
}
|
1611
2073
|
}
|
1612
2074
|
}
|
1613
2075
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1614
2076
|
{
|
1615
2077
|
o->type = msgpack::type::ARRAY;
|
1616
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*21));
|
2078
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*21, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1617
2079
|
o->via.array.size = 21;
|
1618
2080
|
|
1619
2081
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1705,34 +2167,78 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1705
2167
|
switch(size) {
|
1706
2168
|
default:
|
1707
2169
|
case 22: ptr[21].convert(a21);
|
2170
|
+
// fallthrough
|
2171
|
+
|
1708
2172
|
case 21: ptr[20].convert(a20);
|
2173
|
+
// fallthrough
|
2174
|
+
|
1709
2175
|
case 20: ptr[19].convert(a19);
|
2176
|
+
// fallthrough
|
2177
|
+
|
1710
2178
|
case 19: ptr[18].convert(a18);
|
2179
|
+
// fallthrough
|
2180
|
+
|
1711
2181
|
case 18: ptr[17].convert(a17);
|
2182
|
+
// fallthrough
|
2183
|
+
|
1712
2184
|
case 17: ptr[16].convert(a16);
|
2185
|
+
// fallthrough
|
2186
|
+
|
1713
2187
|
case 16: ptr[15].convert(a15);
|
2188
|
+
// fallthrough
|
2189
|
+
|
1714
2190
|
case 15: ptr[14].convert(a14);
|
2191
|
+
// fallthrough
|
2192
|
+
|
1715
2193
|
case 14: ptr[13].convert(a13);
|
2194
|
+
// fallthrough
|
2195
|
+
|
1716
2196
|
case 13: ptr[12].convert(a12);
|
2197
|
+
// fallthrough
|
2198
|
+
|
1717
2199
|
case 12: ptr[11].convert(a11);
|
2200
|
+
// fallthrough
|
2201
|
+
|
1718
2202
|
case 11: ptr[10].convert(a10);
|
2203
|
+
// fallthrough
|
2204
|
+
|
1719
2205
|
case 10: ptr[9].convert(a9);
|
2206
|
+
// fallthrough
|
2207
|
+
|
1720
2208
|
case 9: ptr[8].convert(a8);
|
2209
|
+
// fallthrough
|
2210
|
+
|
1721
2211
|
case 8: ptr[7].convert(a7);
|
2212
|
+
// fallthrough
|
2213
|
+
|
1722
2214
|
case 7: ptr[6].convert(a6);
|
2215
|
+
// fallthrough
|
2216
|
+
|
1723
2217
|
case 6: ptr[5].convert(a5);
|
2218
|
+
// fallthrough
|
2219
|
+
|
1724
2220
|
case 5: ptr[4].convert(a4);
|
2221
|
+
// fallthrough
|
2222
|
+
|
1725
2223
|
case 4: ptr[3].convert(a3);
|
2224
|
+
// fallthrough
|
2225
|
+
|
1726
2226
|
case 3: ptr[2].convert(a2);
|
2227
|
+
// fallthrough
|
2228
|
+
|
1727
2229
|
case 2: ptr[1].convert(a1);
|
2230
|
+
// fallthrough
|
2231
|
+
|
1728
2232
|
case 1: ptr[0].convert(a0);
|
2233
|
+
// fallthrough
|
2234
|
+
|
1729
2235
|
}
|
1730
2236
|
}
|
1731
2237
|
}
|
1732
2238
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1733
2239
|
{
|
1734
2240
|
o->type = msgpack::type::ARRAY;
|
1735
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*22));
|
2241
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*22, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1736
2242
|
o->via.array.size = 22;
|
1737
2243
|
|
1738
2244
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1827,35 +2333,81 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1827
2333
|
switch(size) {
|
1828
2334
|
default:
|
1829
2335
|
case 23: ptr[22].convert(a22);
|
2336
|
+
// fallthrough
|
2337
|
+
|
1830
2338
|
case 22: ptr[21].convert(a21);
|
2339
|
+
// fallthrough
|
2340
|
+
|
1831
2341
|
case 21: ptr[20].convert(a20);
|
2342
|
+
// fallthrough
|
2343
|
+
|
1832
2344
|
case 20: ptr[19].convert(a19);
|
2345
|
+
// fallthrough
|
2346
|
+
|
1833
2347
|
case 19: ptr[18].convert(a18);
|
2348
|
+
// fallthrough
|
2349
|
+
|
1834
2350
|
case 18: ptr[17].convert(a17);
|
2351
|
+
// fallthrough
|
2352
|
+
|
1835
2353
|
case 17: ptr[16].convert(a16);
|
2354
|
+
// fallthrough
|
2355
|
+
|
1836
2356
|
case 16: ptr[15].convert(a15);
|
2357
|
+
// fallthrough
|
2358
|
+
|
1837
2359
|
case 15: ptr[14].convert(a14);
|
2360
|
+
// fallthrough
|
2361
|
+
|
1838
2362
|
case 14: ptr[13].convert(a13);
|
2363
|
+
// fallthrough
|
2364
|
+
|
1839
2365
|
case 13: ptr[12].convert(a12);
|
2366
|
+
// fallthrough
|
2367
|
+
|
1840
2368
|
case 12: ptr[11].convert(a11);
|
2369
|
+
// fallthrough
|
2370
|
+
|
1841
2371
|
case 11: ptr[10].convert(a10);
|
2372
|
+
// fallthrough
|
2373
|
+
|
1842
2374
|
case 10: ptr[9].convert(a9);
|
2375
|
+
// fallthrough
|
2376
|
+
|
1843
2377
|
case 9: ptr[8].convert(a8);
|
2378
|
+
// fallthrough
|
2379
|
+
|
1844
2380
|
case 8: ptr[7].convert(a7);
|
2381
|
+
// fallthrough
|
2382
|
+
|
1845
2383
|
case 7: ptr[6].convert(a6);
|
2384
|
+
// fallthrough
|
2385
|
+
|
1846
2386
|
case 6: ptr[5].convert(a5);
|
2387
|
+
// fallthrough
|
2388
|
+
|
1847
2389
|
case 5: ptr[4].convert(a4);
|
2390
|
+
// fallthrough
|
2391
|
+
|
1848
2392
|
case 4: ptr[3].convert(a3);
|
2393
|
+
// fallthrough
|
2394
|
+
|
1849
2395
|
case 3: ptr[2].convert(a2);
|
2396
|
+
// fallthrough
|
2397
|
+
|
1850
2398
|
case 2: ptr[1].convert(a1);
|
2399
|
+
// fallthrough
|
2400
|
+
|
1851
2401
|
case 1: ptr[0].convert(a0);
|
2402
|
+
// fallthrough
|
2403
|
+
|
1852
2404
|
}
|
1853
2405
|
}
|
1854
2406
|
}
|
1855
2407
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1856
2408
|
{
|
1857
2409
|
o->type = msgpack::type::ARRAY;
|
1858
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*23));
|
2410
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*23, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1859
2411
|
o->via.array.size = 23;
|
1860
2412
|
|
1861
2413
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -1953,36 +2505,84 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
1953
2505
|
switch(size) {
|
1954
2506
|
default:
|
1955
2507
|
case 24: ptr[23].convert(a23);
|
2508
|
+
// fallthrough
|
2509
|
+
|
1956
2510
|
case 23: ptr[22].convert(a22);
|
2511
|
+
// fallthrough
|
2512
|
+
|
1957
2513
|
case 22: ptr[21].convert(a21);
|
2514
|
+
// fallthrough
|
2515
|
+
|
1958
2516
|
case 21: ptr[20].convert(a20);
|
2517
|
+
// fallthrough
|
2518
|
+
|
1959
2519
|
case 20: ptr[19].convert(a19);
|
2520
|
+
// fallthrough
|
2521
|
+
|
1960
2522
|
case 19: ptr[18].convert(a18);
|
2523
|
+
// fallthrough
|
2524
|
+
|
1961
2525
|
case 18: ptr[17].convert(a17);
|
2526
|
+
// fallthrough
|
2527
|
+
|
1962
2528
|
case 17: ptr[16].convert(a16);
|
2529
|
+
// fallthrough
|
2530
|
+
|
1963
2531
|
case 16: ptr[15].convert(a15);
|
2532
|
+
// fallthrough
|
2533
|
+
|
1964
2534
|
case 15: ptr[14].convert(a14);
|
2535
|
+
// fallthrough
|
2536
|
+
|
1965
2537
|
case 14: ptr[13].convert(a13);
|
2538
|
+
// fallthrough
|
2539
|
+
|
1966
2540
|
case 13: ptr[12].convert(a12);
|
2541
|
+
// fallthrough
|
2542
|
+
|
1967
2543
|
case 12: ptr[11].convert(a11);
|
2544
|
+
// fallthrough
|
2545
|
+
|
1968
2546
|
case 11: ptr[10].convert(a10);
|
2547
|
+
// fallthrough
|
2548
|
+
|
1969
2549
|
case 10: ptr[9].convert(a9);
|
2550
|
+
// fallthrough
|
2551
|
+
|
1970
2552
|
case 9: ptr[8].convert(a8);
|
2553
|
+
// fallthrough
|
2554
|
+
|
1971
2555
|
case 8: ptr[7].convert(a7);
|
2556
|
+
// fallthrough
|
2557
|
+
|
1972
2558
|
case 7: ptr[6].convert(a6);
|
2559
|
+
// fallthrough
|
2560
|
+
|
1973
2561
|
case 6: ptr[5].convert(a5);
|
2562
|
+
// fallthrough
|
2563
|
+
|
1974
2564
|
case 5: ptr[4].convert(a4);
|
2565
|
+
// fallthrough
|
2566
|
+
|
1975
2567
|
case 4: ptr[3].convert(a3);
|
2568
|
+
// fallthrough
|
2569
|
+
|
1976
2570
|
case 3: ptr[2].convert(a2);
|
2571
|
+
// fallthrough
|
2572
|
+
|
1977
2573
|
case 2: ptr[1].convert(a1);
|
2574
|
+
// fallthrough
|
2575
|
+
|
1978
2576
|
case 1: ptr[0].convert(a0);
|
2577
|
+
// fallthrough
|
2578
|
+
|
1979
2579
|
}
|
1980
2580
|
}
|
1981
2581
|
}
|
1982
2582
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
1983
2583
|
{
|
1984
2584
|
o->type = msgpack::type::ARRAY;
|
1985
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*24));
|
2585
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*24, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
1986
2586
|
o->via.array.size = 24;
|
1987
2587
|
|
1988
2588
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2083,37 +2683,87 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2083
2683
|
switch(size) {
|
2084
2684
|
default:
|
2085
2685
|
case 25: ptr[24].convert(a24);
|
2686
|
+
// fallthrough
|
2687
|
+
|
2086
2688
|
case 24: ptr[23].convert(a23);
|
2689
|
+
// fallthrough
|
2690
|
+
|
2087
2691
|
case 23: ptr[22].convert(a22);
|
2692
|
+
// fallthrough
|
2693
|
+
|
2088
2694
|
case 22: ptr[21].convert(a21);
|
2695
|
+
// fallthrough
|
2696
|
+
|
2089
2697
|
case 21: ptr[20].convert(a20);
|
2698
|
+
// fallthrough
|
2699
|
+
|
2090
2700
|
case 20: ptr[19].convert(a19);
|
2701
|
+
// fallthrough
|
2702
|
+
|
2091
2703
|
case 19: ptr[18].convert(a18);
|
2704
|
+
// fallthrough
|
2705
|
+
|
2092
2706
|
case 18: ptr[17].convert(a17);
|
2707
|
+
// fallthrough
|
2708
|
+
|
2093
2709
|
case 17: ptr[16].convert(a16);
|
2710
|
+
// fallthrough
|
2711
|
+
|
2094
2712
|
case 16: ptr[15].convert(a15);
|
2713
|
+
// fallthrough
|
2714
|
+
|
2095
2715
|
case 15: ptr[14].convert(a14);
|
2716
|
+
// fallthrough
|
2717
|
+
|
2096
2718
|
case 14: ptr[13].convert(a13);
|
2719
|
+
// fallthrough
|
2720
|
+
|
2097
2721
|
case 13: ptr[12].convert(a12);
|
2722
|
+
// fallthrough
|
2723
|
+
|
2098
2724
|
case 12: ptr[11].convert(a11);
|
2725
|
+
// fallthrough
|
2726
|
+
|
2099
2727
|
case 11: ptr[10].convert(a10);
|
2728
|
+
// fallthrough
|
2729
|
+
|
2100
2730
|
case 10: ptr[9].convert(a9);
|
2731
|
+
// fallthrough
|
2732
|
+
|
2101
2733
|
case 9: ptr[8].convert(a8);
|
2734
|
+
// fallthrough
|
2735
|
+
|
2102
2736
|
case 8: ptr[7].convert(a7);
|
2737
|
+
// fallthrough
|
2738
|
+
|
2103
2739
|
case 7: ptr[6].convert(a6);
|
2740
|
+
// fallthrough
|
2741
|
+
|
2104
2742
|
case 6: ptr[5].convert(a5);
|
2743
|
+
// fallthrough
|
2744
|
+
|
2105
2745
|
case 5: ptr[4].convert(a4);
|
2746
|
+
// fallthrough
|
2747
|
+
|
2106
2748
|
case 4: ptr[3].convert(a3);
|
2749
|
+
// fallthrough
|
2750
|
+
|
2107
2751
|
case 3: ptr[2].convert(a2);
|
2752
|
+
// fallthrough
|
2753
|
+
|
2108
2754
|
case 2: ptr[1].convert(a1);
|
2755
|
+
// fallthrough
|
2756
|
+
|
2109
2757
|
case 1: ptr[0].convert(a0);
|
2758
|
+
// fallthrough
|
2759
|
+
|
2110
2760
|
}
|
2111
2761
|
}
|
2112
2762
|
}
|
2113
2763
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2114
2764
|
{
|
2115
2765
|
o->type = msgpack::type::ARRAY;
|
2116
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*25));
|
2766
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*25, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2117
2767
|
o->via.array.size = 25;
|
2118
2768
|
|
2119
2769
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2217,38 +2867,90 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2217
2867
|
switch(size) {
|
2218
2868
|
default:
|
2219
2869
|
case 26: ptr[25].convert(a25);
|
2870
|
+
// fallthrough
|
2871
|
+
|
2220
2872
|
case 25: ptr[24].convert(a24);
|
2873
|
+
// fallthrough
|
2874
|
+
|
2221
2875
|
case 24: ptr[23].convert(a23);
|
2876
|
+
// fallthrough
|
2877
|
+
|
2222
2878
|
case 23: ptr[22].convert(a22);
|
2879
|
+
// fallthrough
|
2880
|
+
|
2223
2881
|
case 22: ptr[21].convert(a21);
|
2882
|
+
// fallthrough
|
2883
|
+
|
2224
2884
|
case 21: ptr[20].convert(a20);
|
2885
|
+
// fallthrough
|
2886
|
+
|
2225
2887
|
case 20: ptr[19].convert(a19);
|
2888
|
+
// fallthrough
|
2889
|
+
|
2226
2890
|
case 19: ptr[18].convert(a18);
|
2891
|
+
// fallthrough
|
2892
|
+
|
2227
2893
|
case 18: ptr[17].convert(a17);
|
2894
|
+
// fallthrough
|
2895
|
+
|
2228
2896
|
case 17: ptr[16].convert(a16);
|
2897
|
+
// fallthrough
|
2898
|
+
|
2229
2899
|
case 16: ptr[15].convert(a15);
|
2900
|
+
// fallthrough
|
2901
|
+
|
2230
2902
|
case 15: ptr[14].convert(a14);
|
2903
|
+
// fallthrough
|
2904
|
+
|
2231
2905
|
case 14: ptr[13].convert(a13);
|
2906
|
+
// fallthrough
|
2907
|
+
|
2232
2908
|
case 13: ptr[12].convert(a12);
|
2909
|
+
// fallthrough
|
2910
|
+
|
2233
2911
|
case 12: ptr[11].convert(a11);
|
2912
|
+
// fallthrough
|
2913
|
+
|
2234
2914
|
case 11: ptr[10].convert(a10);
|
2915
|
+
// fallthrough
|
2916
|
+
|
2235
2917
|
case 10: ptr[9].convert(a9);
|
2918
|
+
// fallthrough
|
2919
|
+
|
2236
2920
|
case 9: ptr[8].convert(a8);
|
2921
|
+
// fallthrough
|
2922
|
+
|
2237
2923
|
case 8: ptr[7].convert(a7);
|
2924
|
+
// fallthrough
|
2925
|
+
|
2238
2926
|
case 7: ptr[6].convert(a6);
|
2927
|
+
// fallthrough
|
2928
|
+
|
2239
2929
|
case 6: ptr[5].convert(a5);
|
2930
|
+
// fallthrough
|
2931
|
+
|
2240
2932
|
case 5: ptr[4].convert(a4);
|
2933
|
+
// fallthrough
|
2934
|
+
|
2241
2935
|
case 4: ptr[3].convert(a3);
|
2936
|
+
// fallthrough
|
2937
|
+
|
2242
2938
|
case 3: ptr[2].convert(a2);
|
2939
|
+
// fallthrough
|
2940
|
+
|
2243
2941
|
case 2: ptr[1].convert(a1);
|
2942
|
+
// fallthrough
|
2943
|
+
|
2244
2944
|
case 1: ptr[0].convert(a0);
|
2945
|
+
// fallthrough
|
2946
|
+
|
2245
2947
|
}
|
2246
2948
|
}
|
2247
2949
|
}
|
2248
2950
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2249
2951
|
{
|
2250
2952
|
o->type = msgpack::type::ARRAY;
|
2251
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*26));
|
2953
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*26, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2252
2954
|
o->via.array.size = 26;
|
2253
2955
|
|
2254
2956
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2355,39 +3057,93 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2355
3057
|
switch(size) {
|
2356
3058
|
default:
|
2357
3059
|
case 27: ptr[26].convert(a26);
|
3060
|
+
// fallthrough
|
3061
|
+
|
2358
3062
|
case 26: ptr[25].convert(a25);
|
3063
|
+
// fallthrough
|
3064
|
+
|
2359
3065
|
case 25: ptr[24].convert(a24);
|
3066
|
+
// fallthrough
|
3067
|
+
|
2360
3068
|
case 24: ptr[23].convert(a23);
|
3069
|
+
// fallthrough
|
3070
|
+
|
2361
3071
|
case 23: ptr[22].convert(a22);
|
3072
|
+
// fallthrough
|
3073
|
+
|
2362
3074
|
case 22: ptr[21].convert(a21);
|
3075
|
+
// fallthrough
|
3076
|
+
|
2363
3077
|
case 21: ptr[20].convert(a20);
|
3078
|
+
// fallthrough
|
3079
|
+
|
2364
3080
|
case 20: ptr[19].convert(a19);
|
3081
|
+
// fallthrough
|
3082
|
+
|
2365
3083
|
case 19: ptr[18].convert(a18);
|
3084
|
+
// fallthrough
|
3085
|
+
|
2366
3086
|
case 18: ptr[17].convert(a17);
|
3087
|
+
// fallthrough
|
3088
|
+
|
2367
3089
|
case 17: ptr[16].convert(a16);
|
3090
|
+
// fallthrough
|
3091
|
+
|
2368
3092
|
case 16: ptr[15].convert(a15);
|
3093
|
+
// fallthrough
|
3094
|
+
|
2369
3095
|
case 15: ptr[14].convert(a14);
|
3096
|
+
// fallthrough
|
3097
|
+
|
2370
3098
|
case 14: ptr[13].convert(a13);
|
3099
|
+
// fallthrough
|
3100
|
+
|
2371
3101
|
case 13: ptr[12].convert(a12);
|
3102
|
+
// fallthrough
|
3103
|
+
|
2372
3104
|
case 12: ptr[11].convert(a11);
|
3105
|
+
// fallthrough
|
3106
|
+
|
2373
3107
|
case 11: ptr[10].convert(a10);
|
3108
|
+
// fallthrough
|
3109
|
+
|
2374
3110
|
case 10: ptr[9].convert(a9);
|
3111
|
+
// fallthrough
|
3112
|
+
|
2375
3113
|
case 9: ptr[8].convert(a8);
|
3114
|
+
// fallthrough
|
3115
|
+
|
2376
3116
|
case 8: ptr[7].convert(a7);
|
3117
|
+
// fallthrough
|
3118
|
+
|
2377
3119
|
case 7: ptr[6].convert(a6);
|
3120
|
+
// fallthrough
|
3121
|
+
|
2378
3122
|
case 6: ptr[5].convert(a5);
|
3123
|
+
// fallthrough
|
3124
|
+
|
2379
3125
|
case 5: ptr[4].convert(a4);
|
3126
|
+
// fallthrough
|
3127
|
+
|
2380
3128
|
case 4: ptr[3].convert(a3);
|
3129
|
+
// fallthrough
|
3130
|
+
|
2381
3131
|
case 3: ptr[2].convert(a2);
|
3132
|
+
// fallthrough
|
3133
|
+
|
2382
3134
|
case 2: ptr[1].convert(a1);
|
3135
|
+
// fallthrough
|
3136
|
+
|
2383
3137
|
case 1: ptr[0].convert(a0);
|
3138
|
+
// fallthrough
|
3139
|
+
|
2384
3140
|
}
|
2385
3141
|
}
|
2386
3142
|
}
|
2387
3143
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2388
3144
|
{
|
2389
3145
|
o->type = msgpack::type::ARRAY;
|
2390
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*27));
|
3146
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*27, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2391
3147
|
o->via.array.size = 27;
|
2392
3148
|
|
2393
3149
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2497,40 +3253,96 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2497
3253
|
switch(size) {
|
2498
3254
|
default:
|
2499
3255
|
case 28: ptr[27].convert(a27);
|
3256
|
+
// fallthrough
|
3257
|
+
|
2500
3258
|
case 27: ptr[26].convert(a26);
|
3259
|
+
// fallthrough
|
3260
|
+
|
2501
3261
|
case 26: ptr[25].convert(a25);
|
3262
|
+
// fallthrough
|
3263
|
+
|
2502
3264
|
case 25: ptr[24].convert(a24);
|
3265
|
+
// fallthrough
|
3266
|
+
|
2503
3267
|
case 24: ptr[23].convert(a23);
|
3268
|
+
// fallthrough
|
3269
|
+
|
2504
3270
|
case 23: ptr[22].convert(a22);
|
3271
|
+
// fallthrough
|
3272
|
+
|
2505
3273
|
case 22: ptr[21].convert(a21);
|
3274
|
+
// fallthrough
|
3275
|
+
|
2506
3276
|
case 21: ptr[20].convert(a20);
|
3277
|
+
// fallthrough
|
3278
|
+
|
2507
3279
|
case 20: ptr[19].convert(a19);
|
3280
|
+
// fallthrough
|
3281
|
+
|
2508
3282
|
case 19: ptr[18].convert(a18);
|
3283
|
+
// fallthrough
|
3284
|
+
|
2509
3285
|
case 18: ptr[17].convert(a17);
|
3286
|
+
// fallthrough
|
3287
|
+
|
2510
3288
|
case 17: ptr[16].convert(a16);
|
3289
|
+
// fallthrough
|
3290
|
+
|
2511
3291
|
case 16: ptr[15].convert(a15);
|
3292
|
+
// fallthrough
|
3293
|
+
|
2512
3294
|
case 15: ptr[14].convert(a14);
|
3295
|
+
// fallthrough
|
3296
|
+
|
2513
3297
|
case 14: ptr[13].convert(a13);
|
3298
|
+
// fallthrough
|
3299
|
+
|
2514
3300
|
case 13: ptr[12].convert(a12);
|
3301
|
+
// fallthrough
|
3302
|
+
|
2515
3303
|
case 12: ptr[11].convert(a11);
|
3304
|
+
// fallthrough
|
3305
|
+
|
2516
3306
|
case 11: ptr[10].convert(a10);
|
3307
|
+
// fallthrough
|
3308
|
+
|
2517
3309
|
case 10: ptr[9].convert(a9);
|
3310
|
+
// fallthrough
|
3311
|
+
|
2518
3312
|
case 9: ptr[8].convert(a8);
|
3313
|
+
// fallthrough
|
3314
|
+
|
2519
3315
|
case 8: ptr[7].convert(a7);
|
3316
|
+
// fallthrough
|
3317
|
+
|
2520
3318
|
case 7: ptr[6].convert(a6);
|
3319
|
+
// fallthrough
|
3320
|
+
|
2521
3321
|
case 6: ptr[5].convert(a5);
|
3322
|
+
// fallthrough
|
3323
|
+
|
2522
3324
|
case 5: ptr[4].convert(a4);
|
3325
|
+
// fallthrough
|
3326
|
+
|
2523
3327
|
case 4: ptr[3].convert(a3);
|
3328
|
+
// fallthrough
|
3329
|
+
|
2524
3330
|
case 3: ptr[2].convert(a2);
|
3331
|
+
// fallthrough
|
3332
|
+
|
2525
3333
|
case 2: ptr[1].convert(a1);
|
3334
|
+
// fallthrough
|
3335
|
+
|
2526
3336
|
case 1: ptr[0].convert(a0);
|
3337
|
+
// fallthrough
|
3338
|
+
|
2527
3339
|
}
|
2528
3340
|
}
|
2529
3341
|
}
|
2530
3342
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2531
3343
|
{
|
2532
3344
|
o->type = msgpack::type::ARRAY;
|
2533
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*28));
|
3345
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*28, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2534
3346
|
o->via.array.size = 28;
|
2535
3347
|
|
2536
3348
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2643,41 +3455,99 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2643
3455
|
switch(size) {
|
2644
3456
|
default:
|
2645
3457
|
case 29: ptr[28].convert(a28);
|
3458
|
+
// fallthrough
|
3459
|
+
|
2646
3460
|
case 28: ptr[27].convert(a27);
|
3461
|
+
// fallthrough
|
3462
|
+
|
2647
3463
|
case 27: ptr[26].convert(a26);
|
3464
|
+
// fallthrough
|
3465
|
+
|
2648
3466
|
case 26: ptr[25].convert(a25);
|
3467
|
+
// fallthrough
|
3468
|
+
|
2649
3469
|
case 25: ptr[24].convert(a24);
|
3470
|
+
// fallthrough
|
3471
|
+
|
2650
3472
|
case 24: ptr[23].convert(a23);
|
3473
|
+
// fallthrough
|
3474
|
+
|
2651
3475
|
case 23: ptr[22].convert(a22);
|
3476
|
+
// fallthrough
|
3477
|
+
|
2652
3478
|
case 22: ptr[21].convert(a21);
|
3479
|
+
// fallthrough
|
3480
|
+
|
2653
3481
|
case 21: ptr[20].convert(a20);
|
3482
|
+
// fallthrough
|
3483
|
+
|
2654
3484
|
case 20: ptr[19].convert(a19);
|
3485
|
+
// fallthrough
|
3486
|
+
|
2655
3487
|
case 19: ptr[18].convert(a18);
|
3488
|
+
// fallthrough
|
3489
|
+
|
2656
3490
|
case 18: ptr[17].convert(a17);
|
3491
|
+
// fallthrough
|
3492
|
+
|
2657
3493
|
case 17: ptr[16].convert(a16);
|
3494
|
+
// fallthrough
|
3495
|
+
|
2658
3496
|
case 16: ptr[15].convert(a15);
|
3497
|
+
// fallthrough
|
3498
|
+
|
2659
3499
|
case 15: ptr[14].convert(a14);
|
3500
|
+
// fallthrough
|
3501
|
+
|
2660
3502
|
case 14: ptr[13].convert(a13);
|
3503
|
+
// fallthrough
|
3504
|
+
|
2661
3505
|
case 13: ptr[12].convert(a12);
|
3506
|
+
// fallthrough
|
3507
|
+
|
2662
3508
|
case 12: ptr[11].convert(a11);
|
3509
|
+
// fallthrough
|
3510
|
+
|
2663
3511
|
case 11: ptr[10].convert(a10);
|
3512
|
+
// fallthrough
|
3513
|
+
|
2664
3514
|
case 10: ptr[9].convert(a9);
|
3515
|
+
// fallthrough
|
3516
|
+
|
2665
3517
|
case 9: ptr[8].convert(a8);
|
3518
|
+
// fallthrough
|
3519
|
+
|
2666
3520
|
case 8: ptr[7].convert(a7);
|
3521
|
+
// fallthrough
|
3522
|
+
|
2667
3523
|
case 7: ptr[6].convert(a6);
|
3524
|
+
// fallthrough
|
3525
|
+
|
2668
3526
|
case 6: ptr[5].convert(a5);
|
3527
|
+
// fallthrough
|
3528
|
+
|
2669
3529
|
case 5: ptr[4].convert(a4);
|
3530
|
+
// fallthrough
|
3531
|
+
|
2670
3532
|
case 4: ptr[3].convert(a3);
|
3533
|
+
// fallthrough
|
3534
|
+
|
2671
3535
|
case 3: ptr[2].convert(a2);
|
3536
|
+
// fallthrough
|
3537
|
+
|
2672
3538
|
case 2: ptr[1].convert(a1);
|
3539
|
+
// fallthrough
|
3540
|
+
|
2673
3541
|
case 1: ptr[0].convert(a0);
|
3542
|
+
// fallthrough
|
3543
|
+
|
2674
3544
|
}
|
2675
3545
|
}
|
2676
3546
|
}
|
2677
3547
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2678
3548
|
{
|
2679
3549
|
o->type = msgpack::type::ARRAY;
|
2680
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*29));
|
3550
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*29, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2681
3551
|
o->via.array.size = 29;
|
2682
3552
|
|
2683
3553
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2793,42 +3663,102 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2793
3663
|
switch(size) {
|
2794
3664
|
default:
|
2795
3665
|
case 30: ptr[29].convert(a29);
|
3666
|
+
// fallthrough
|
3667
|
+
|
2796
3668
|
case 29: ptr[28].convert(a28);
|
3669
|
+
// fallthrough
|
3670
|
+
|
2797
3671
|
case 28: ptr[27].convert(a27);
|
3672
|
+
// fallthrough
|
3673
|
+
|
2798
3674
|
case 27: ptr[26].convert(a26);
|
3675
|
+
// fallthrough
|
3676
|
+
|
2799
3677
|
case 26: ptr[25].convert(a25);
|
3678
|
+
// fallthrough
|
3679
|
+
|
2800
3680
|
case 25: ptr[24].convert(a24);
|
3681
|
+
// fallthrough
|
3682
|
+
|
2801
3683
|
case 24: ptr[23].convert(a23);
|
3684
|
+
// fallthrough
|
3685
|
+
|
2802
3686
|
case 23: ptr[22].convert(a22);
|
3687
|
+
// fallthrough
|
3688
|
+
|
2803
3689
|
case 22: ptr[21].convert(a21);
|
3690
|
+
// fallthrough
|
3691
|
+
|
2804
3692
|
case 21: ptr[20].convert(a20);
|
3693
|
+
// fallthrough
|
3694
|
+
|
2805
3695
|
case 20: ptr[19].convert(a19);
|
3696
|
+
// fallthrough
|
3697
|
+
|
2806
3698
|
case 19: ptr[18].convert(a18);
|
3699
|
+
// fallthrough
|
3700
|
+
|
2807
3701
|
case 18: ptr[17].convert(a17);
|
3702
|
+
// fallthrough
|
3703
|
+
|
2808
3704
|
case 17: ptr[16].convert(a16);
|
3705
|
+
// fallthrough
|
3706
|
+
|
2809
3707
|
case 16: ptr[15].convert(a15);
|
3708
|
+
// fallthrough
|
3709
|
+
|
2810
3710
|
case 15: ptr[14].convert(a14);
|
3711
|
+
// fallthrough
|
3712
|
+
|
2811
3713
|
case 14: ptr[13].convert(a13);
|
3714
|
+
// fallthrough
|
3715
|
+
|
2812
3716
|
case 13: ptr[12].convert(a12);
|
3717
|
+
// fallthrough
|
3718
|
+
|
2813
3719
|
case 12: ptr[11].convert(a11);
|
3720
|
+
// fallthrough
|
3721
|
+
|
2814
3722
|
case 11: ptr[10].convert(a10);
|
3723
|
+
// fallthrough
|
3724
|
+
|
2815
3725
|
case 10: ptr[9].convert(a9);
|
3726
|
+
// fallthrough
|
3727
|
+
|
2816
3728
|
case 9: ptr[8].convert(a8);
|
3729
|
+
// fallthrough
|
3730
|
+
|
2817
3731
|
case 8: ptr[7].convert(a7);
|
3732
|
+
// fallthrough
|
3733
|
+
|
2818
3734
|
case 7: ptr[6].convert(a6);
|
3735
|
+
// fallthrough
|
3736
|
+
|
2819
3737
|
case 6: ptr[5].convert(a5);
|
3738
|
+
// fallthrough
|
3739
|
+
|
2820
3740
|
case 5: ptr[4].convert(a4);
|
3741
|
+
// fallthrough
|
3742
|
+
|
2821
3743
|
case 4: ptr[3].convert(a3);
|
3744
|
+
// fallthrough
|
3745
|
+
|
2822
3746
|
case 3: ptr[2].convert(a2);
|
3747
|
+
// fallthrough
|
3748
|
+
|
2823
3749
|
case 2: ptr[1].convert(a1);
|
3750
|
+
// fallthrough
|
3751
|
+
|
2824
3752
|
case 1: ptr[0].convert(a0);
|
3753
|
+
// fallthrough
|
3754
|
+
|
2825
3755
|
}
|
2826
3756
|
}
|
2827
3757
|
}
|
2828
3758
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2829
3759
|
{
|
2830
3760
|
o->type = msgpack::type::ARRAY;
|
2831
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*30));
|
3761
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*30, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2832
3762
|
o->via.array.size = 30;
|
2833
3763
|
|
2834
3764
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -2947,43 +3877,105 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
2947
3877
|
switch(size) {
|
2948
3878
|
default:
|
2949
3879
|
case 31: ptr[30].convert(a30);
|
3880
|
+
// fallthrough
|
3881
|
+
|
2950
3882
|
case 30: ptr[29].convert(a29);
|
3883
|
+
// fallthrough
|
3884
|
+
|
2951
3885
|
case 29: ptr[28].convert(a28);
|
3886
|
+
// fallthrough
|
3887
|
+
|
2952
3888
|
case 28: ptr[27].convert(a27);
|
3889
|
+
// fallthrough
|
3890
|
+
|
2953
3891
|
case 27: ptr[26].convert(a26);
|
3892
|
+
// fallthrough
|
3893
|
+
|
2954
3894
|
case 26: ptr[25].convert(a25);
|
3895
|
+
// fallthrough
|
3896
|
+
|
2955
3897
|
case 25: ptr[24].convert(a24);
|
3898
|
+
// fallthrough
|
3899
|
+
|
2956
3900
|
case 24: ptr[23].convert(a23);
|
3901
|
+
// fallthrough
|
3902
|
+
|
2957
3903
|
case 23: ptr[22].convert(a22);
|
3904
|
+
// fallthrough
|
3905
|
+
|
2958
3906
|
case 22: ptr[21].convert(a21);
|
3907
|
+
// fallthrough
|
3908
|
+
|
2959
3909
|
case 21: ptr[20].convert(a20);
|
3910
|
+
// fallthrough
|
3911
|
+
|
2960
3912
|
case 20: ptr[19].convert(a19);
|
3913
|
+
// fallthrough
|
3914
|
+
|
2961
3915
|
case 19: ptr[18].convert(a18);
|
3916
|
+
// fallthrough
|
3917
|
+
|
2962
3918
|
case 18: ptr[17].convert(a17);
|
3919
|
+
// fallthrough
|
3920
|
+
|
2963
3921
|
case 17: ptr[16].convert(a16);
|
3922
|
+
// fallthrough
|
3923
|
+
|
2964
3924
|
case 16: ptr[15].convert(a15);
|
3925
|
+
// fallthrough
|
3926
|
+
|
2965
3927
|
case 15: ptr[14].convert(a14);
|
3928
|
+
// fallthrough
|
3929
|
+
|
2966
3930
|
case 14: ptr[13].convert(a13);
|
3931
|
+
// fallthrough
|
3932
|
+
|
2967
3933
|
case 13: ptr[12].convert(a12);
|
3934
|
+
// fallthrough
|
3935
|
+
|
2968
3936
|
case 12: ptr[11].convert(a11);
|
3937
|
+
// fallthrough
|
3938
|
+
|
2969
3939
|
case 11: ptr[10].convert(a10);
|
3940
|
+
// fallthrough
|
3941
|
+
|
2970
3942
|
case 10: ptr[9].convert(a9);
|
3943
|
+
// fallthrough
|
3944
|
+
|
2971
3945
|
case 9: ptr[8].convert(a8);
|
3946
|
+
// fallthrough
|
3947
|
+
|
2972
3948
|
case 8: ptr[7].convert(a7);
|
3949
|
+
// fallthrough
|
3950
|
+
|
2973
3951
|
case 7: ptr[6].convert(a6);
|
3952
|
+
// fallthrough
|
3953
|
+
|
2974
3954
|
case 6: ptr[5].convert(a5);
|
3955
|
+
// fallthrough
|
3956
|
+
|
2975
3957
|
case 5: ptr[4].convert(a4);
|
3958
|
+
// fallthrough
|
3959
|
+
|
2976
3960
|
case 4: ptr[3].convert(a3);
|
3961
|
+
// fallthrough
|
3962
|
+
|
2977
3963
|
case 3: ptr[2].convert(a2);
|
3964
|
+
// fallthrough
|
3965
|
+
|
2978
3966
|
case 2: ptr[1].convert(a1);
|
3967
|
+
// fallthrough
|
3968
|
+
|
2979
3969
|
case 1: ptr[0].convert(a0);
|
3970
|
+
// fallthrough
|
3971
|
+
|
2980
3972
|
}
|
2981
3973
|
}
|
2982
3974
|
}
|
2983
3975
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
2984
3976
|
{
|
2985
3977
|
o->type = msgpack::type::ARRAY;
|
2986
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*31));
|
3978
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*31, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
2987
3979
|
o->via.array.size = 31;
|
2988
3980
|
|
2989
3981
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|
@@ -3105,44 +4097,108 @@ struct define_array<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13,
|
|
3105
4097
|
switch(size) {
|
3106
4098
|
default:
|
3107
4099
|
case 32: ptr[31].convert(a31);
|
4100
|
+
// fallthrough
|
4101
|
+
|
3108
4102
|
case 31: ptr[30].convert(a30);
|
4103
|
+
// fallthrough
|
4104
|
+
|
3109
4105
|
case 30: ptr[29].convert(a29);
|
4106
|
+
// fallthrough
|
4107
|
+
|
3110
4108
|
case 29: ptr[28].convert(a28);
|
4109
|
+
// fallthrough
|
4110
|
+
|
3111
4111
|
case 28: ptr[27].convert(a27);
|
4112
|
+
// fallthrough
|
4113
|
+
|
3112
4114
|
case 27: ptr[26].convert(a26);
|
4115
|
+
// fallthrough
|
4116
|
+
|
3113
4117
|
case 26: ptr[25].convert(a25);
|
4118
|
+
// fallthrough
|
4119
|
+
|
3114
4120
|
case 25: ptr[24].convert(a24);
|
4121
|
+
// fallthrough
|
4122
|
+
|
3115
4123
|
case 24: ptr[23].convert(a23);
|
4124
|
+
// fallthrough
|
4125
|
+
|
3116
4126
|
case 23: ptr[22].convert(a22);
|
4127
|
+
// fallthrough
|
4128
|
+
|
3117
4129
|
case 22: ptr[21].convert(a21);
|
4130
|
+
// fallthrough
|
4131
|
+
|
3118
4132
|
case 21: ptr[20].convert(a20);
|
4133
|
+
// fallthrough
|
4134
|
+
|
3119
4135
|
case 20: ptr[19].convert(a19);
|
4136
|
+
// fallthrough
|
4137
|
+
|
3120
4138
|
case 19: ptr[18].convert(a18);
|
4139
|
+
// fallthrough
|
4140
|
+
|
3121
4141
|
case 18: ptr[17].convert(a17);
|
4142
|
+
// fallthrough
|
4143
|
+
|
3122
4144
|
case 17: ptr[16].convert(a16);
|
4145
|
+
// fallthrough
|
4146
|
+
|
3123
4147
|
case 16: ptr[15].convert(a15);
|
4148
|
+
// fallthrough
|
4149
|
+
|
3124
4150
|
case 15: ptr[14].convert(a14);
|
4151
|
+
// fallthrough
|
4152
|
+
|
3125
4153
|
case 14: ptr[13].convert(a13);
|
4154
|
+
// fallthrough
|
4155
|
+
|
3126
4156
|
case 13: ptr[12].convert(a12);
|
4157
|
+
// fallthrough
|
4158
|
+
|
3127
4159
|
case 12: ptr[11].convert(a11);
|
4160
|
+
// fallthrough
|
4161
|
+
|
3128
4162
|
case 11: ptr[10].convert(a10);
|
4163
|
+
// fallthrough
|
4164
|
+
|
3129
4165
|
case 10: ptr[9].convert(a9);
|
4166
|
+
// fallthrough
|
4167
|
+
|
3130
4168
|
case 9: ptr[8].convert(a8);
|
4169
|
+
// fallthrough
|
4170
|
+
|
3131
4171
|
case 8: ptr[7].convert(a7);
|
4172
|
+
// fallthrough
|
4173
|
+
|
3132
4174
|
case 7: ptr[6].convert(a6);
|
4175
|
+
// fallthrough
|
4176
|
+
|
3133
4177
|
case 6: ptr[5].convert(a5);
|
4178
|
+
// fallthrough
|
4179
|
+
|
3134
4180
|
case 5: ptr[4].convert(a4);
|
4181
|
+
// fallthrough
|
4182
|
+
|
3135
4183
|
case 4: ptr[3].convert(a3);
|
4184
|
+
// fallthrough
|
4185
|
+
|
3136
4186
|
case 3: ptr[2].convert(a2);
|
4187
|
+
// fallthrough
|
4188
|
+
|
3137
4189
|
case 2: ptr[1].convert(a1);
|
4190
|
+
// fallthrough
|
4191
|
+
|
3138
4192
|
case 1: ptr[0].convert(a0);
|
4193
|
+
// fallthrough
|
4194
|
+
|
3139
4195
|
}
|
3140
4196
|
}
|
3141
4197
|
}
|
3142
4198
|
void msgpack_object(msgpack::object* o, msgpack::zone& z) const
|
3143
4199
|
{
|
3144
4200
|
o->type = msgpack::type::ARRAY;
|
3145
|
-
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*32));
|
4201
|
+
o->via.array.ptr = static_cast<msgpack::object*>(z.allocate_align(sizeof(msgpack::object)*32, MSGPACK_ZONE_ALIGNOF(msgpack::object)));
|
3146
4202
|
o->via.array.size = 32;
|
3147
4203
|
|
3148
4204
|
o->via.array.ptr[0] = msgpack::object(a0, z);
|