rroonga 9.0.3-x86-mingw32 → 9.0.7-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/doc/text/news.md +30 -0
 - data/ext/groonga/rb-grn-context.c +27 -0
 - data/ext/groonga/rb-grn-flushable.c +7 -0
 - data/ext/groonga/rb-grn-index-column.c +28 -0
 - data/ext/groonga/rb-grn-index-cursor.c +19 -0
 - data/ext/groonga/rb-grn-logger.c +17 -3
 - data/ext/groonga/rb-grn-object.c +236 -22
 - data/ext/groonga/rb-grn-table.c +68 -42
 - data/ext/groonga/rb-grn.h +1 -1
 - 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/2.6/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +3 -0
 - data/lib/groonga/record.rb +2 -2
 - data/test/groonga-test-utils.rb +28 -5
 - data/test/run-test.rb +0 -2
 - data/test/test-accessor.rb +63 -7
 - data/test/test-context.rb +25 -0
 - data/test/test-exception.rb +5 -0
 - data/test/test-flushable.rb +51 -6
 - data/test/test-index-column.rb +67 -6
 - data/test/test-index-cursor.rb +26 -0
 - data/test/test-logger.rb +56 -11
 - data/test/test-plugin.rb +1 -0
 - data/test/test-query-logger.rb +4 -3
 - data/test/test-record.rb +2 -1
 - data/test/test-remote.rb +40 -10
 - data/test/test-schema-dumper.rb +13 -0
 - data/test/test-table.rb +21 -1
 - data/test/test-variable.rb +23 -7
 - data/vendor/local/bin/generate-pdb.bat +21 -21
 - 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.exe +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - 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/cmake/RapidJSONConfig.cmake +3 -0
 - data/vendor/local/cmake/RapidJSONConfigVersion.cmake +10 -0
 - data/vendor/local/include/groonga/groonga/expr.h +16 -0
 - data/vendor/local/include/groonga/groonga/obj.h +8 -0
 - data/vendor/local/include/groonga/groonga/output.h +5 -0
 - data/vendor/local/include/groonga/groonga/version.h +2 -2
 - data/vendor/local/include/rapidjson/allocators.h +271 -0
 - data/vendor/local/include/rapidjson/document.h +2575 -0
 - data/vendor/local/include/rapidjson/encodedstream.h +299 -0
 - data/vendor/local/include/rapidjson/encodings.h +716 -0
 - data/vendor/local/include/rapidjson/error/en.h +74 -0
 - data/vendor/local/include/rapidjson/error/error.h +155 -0
 - data/vendor/local/include/rapidjson/filereadstream.h +99 -0
 - data/vendor/local/include/rapidjson/filewritestream.h +104 -0
 - data/vendor/local/include/rapidjson/fwd.h +151 -0
 - data/vendor/local/include/rapidjson/internal/biginteger.h +290 -0
 - data/vendor/local/include/rapidjson/internal/diyfp.h +258 -0
 - data/vendor/local/include/rapidjson/internal/dtoa.h +245 -0
 - data/vendor/local/include/rapidjson/internal/ieee754.h +78 -0
 - data/vendor/local/include/rapidjson/internal/itoa.h +304 -0
 - data/vendor/local/include/rapidjson/internal/meta.h +181 -0
 - data/vendor/local/include/rapidjson/internal/pow10.h +55 -0
 - data/vendor/local/include/rapidjson/internal/regex.h +701 -0
 - data/vendor/local/include/rapidjson/internal/stack.h +230 -0
 - data/vendor/local/include/rapidjson/internal/strfunc.h +55 -0
 - data/vendor/local/include/rapidjson/internal/strtod.h +269 -0
 - data/vendor/local/include/rapidjson/internal/swap.h +46 -0
 - data/vendor/local/include/rapidjson/istreamwrapper.h +115 -0
 - data/vendor/local/include/rapidjson/memorybuffer.h +70 -0
 - data/vendor/local/include/rapidjson/memorystream.h +71 -0
 - data/vendor/local/include/rapidjson/msinttypes/inttypes.h +316 -0
 - data/vendor/local/include/rapidjson/msinttypes/stdint.h +300 -0
 - data/vendor/local/include/rapidjson/ostreamwrapper.h +81 -0
 - data/vendor/local/include/rapidjson/pointer.h +1358 -0
 - data/vendor/local/include/rapidjson/prettywriter.h +255 -0
 - data/vendor/local/include/rapidjson/rapidjson.h +615 -0
 - data/vendor/local/include/rapidjson/reader.h +1879 -0
 - data/vendor/local/include/rapidjson/schema.h +2006 -0
 - data/vendor/local/include/rapidjson/stream.h +179 -0
 - data/vendor/local/include/rapidjson/stringbuffer.h +117 -0
 - data/vendor/local/include/rapidjson/writer.h +610 -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/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 +44 -18
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +9 -8
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +48 -15
 - data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +84 -58
 - data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +1 -1
 - 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/command.rb +3 -4
 - data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +267 -77
 - data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +96 -0
 - data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +30 -7
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +5 -0
 - data/vendor/local/lib/groonga/scripts/ruby/loggable.rb +8 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger/flags.rb +70 -0
 - data/vendor/local/lib/groonga/scripts/ruby/query_loggable.rb +8 -0
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/time.rb +9 -0
 - 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.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.8.2 +0 -0
 - data/vendor/local/lib/libmecab.dll.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/libonigmo.la +1 -1
 - data/vendor/local/lib/libpcre.dll.a +0 -0
 - data/vendor/local/lib/libpcrecpp.dll.a +0 -0
 - data/vendor/local/lib/libpcreposix.dll.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - 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/RapidJSON/examples/CMakeLists.txt +42 -0
 - data/vendor/local/share/doc/RapidJSON/examples/capitalize/capitalize.cpp +67 -0
 - data/vendor/local/share/doc/RapidJSON/examples/condense/condense.cpp +32 -0
 - data/vendor/local/share/doc/RapidJSON/examples/filterkey/filterkey.cpp +135 -0
 - data/vendor/local/share/doc/RapidJSON/examples/filterkeydom/filterkeydom.cpp +170 -0
 - data/vendor/local/share/doc/RapidJSON/examples/jsonx/jsonx.cpp +207 -0
 - data/vendor/local/share/doc/RapidJSON/examples/messagereader/messagereader.cpp +105 -0
 - data/vendor/local/share/doc/RapidJSON/examples/parsebyparts/parsebyparts.cpp +173 -0
 - data/vendor/local/share/doc/RapidJSON/examples/pretty/pretty.cpp +30 -0
 - data/vendor/local/share/doc/RapidJSON/examples/prettyauto/prettyauto.cpp +56 -0
 - data/vendor/local/share/doc/RapidJSON/examples/schemavalidator/schemavalidator.cpp +72 -0
 - data/vendor/local/share/doc/RapidJSON/examples/serialize/serialize.cpp +173 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simpledom/simpledom.cpp +29 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simplereader/simplereader.cpp +42 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simplewriter/simplewriter.cpp +36 -0
 - data/vendor/local/share/doc/RapidJSON/examples/tutorial/tutorial.cpp +151 -0
 - data/vendor/local/share/doc/RapidJSON/readme.md +160 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/client.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/community.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/development.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/index.html +11 -7
 - data/vendor/local/share/doc/groonga/en/html/install.html +5 -4
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +79 -8
 - data/vendor/local/share/doc/groonga/en/html/install/docker.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news.html +498 -206
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/5.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/6.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +9 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/alias.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +77 -4
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +78 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +58 -4
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +11 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +9 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_ngram.html +1005 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_pattern.html +240 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_table.html +246 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +20 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +68 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +37 -4
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/client.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/community.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/development.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/index.html +11 -7
 - data/vendor/local/share/doc/groonga/ja/html/install.html +5 -4
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +69 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/docker.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news.html +494 -206
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +9 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +75 -4
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +73 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +57 -4
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +9 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_ngram.html +998 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_pattern.html +240 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_table.html +242 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +64 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +37 -4
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +3 -3
 - data/vendor/local/share/groonga/COPYING +502 -0
 - data/vendor/local/share/groonga/mruby/LEGAL +58 -54
 - data/vendor/local/share/license/mruby/AUTHORS +6 -2
 - data/vendor/local/share/license/mruby/LEGAL +1 -1
 - data/vendor/local/share/license/mruby/{MITL → LICENSE} +1 -1
 - data/vendor/local/share/license/mruby/README.md +3 -3
 - data/vendor/local/share/license/rapidjson/license.txt +57 -0
 - metadata +126 -60
 
| 
         @@ -0,0 +1,255 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // Tencent is pleased to support the open source community by making RapidJSON available.
         
     | 
| 
      
 2 
     | 
    
         
            +
            // 
         
     | 
| 
      
 3 
     | 
    
         
            +
            // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
         
     | 
| 
      
 4 
     | 
    
         
            +
            //
         
     | 
| 
      
 5 
     | 
    
         
            +
            // Licensed under the MIT License (the "License"); you may not use this file except
         
     | 
| 
      
 6 
     | 
    
         
            +
            // in compliance with the License. You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            //
         
     | 
| 
      
 8 
     | 
    
         
            +
            // http://opensource.org/licenses/MIT
         
     | 
| 
      
 9 
     | 
    
         
            +
            //
         
     | 
| 
      
 10 
     | 
    
         
            +
            // Unless required by applicable law or agreed to in writing, software distributed 
         
     | 
| 
      
 11 
     | 
    
         
            +
            // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
         
     | 
| 
      
 12 
     | 
    
         
            +
            // CONDITIONS OF ANY KIND, either express or implied. See the License for the 
         
     | 
| 
      
 13 
     | 
    
         
            +
            // specific language governing permissions and limitations under the License.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            #ifndef RAPIDJSON_PRETTYWRITER_H_
         
     | 
| 
      
 16 
     | 
    
         
            +
            #define RAPIDJSON_PRETTYWRITER_H_
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            #include "writer.h"
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            #ifdef __GNUC__
         
     | 
| 
      
 21 
     | 
    
         
            +
            RAPIDJSON_DIAG_PUSH
         
     | 
| 
      
 22 
     | 
    
         
            +
            RAPIDJSON_DIAG_OFF(effc++)
         
     | 
| 
      
 23 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            //! Combination of PrettyWriter format flags.
         
     | 
| 
      
 28 
     | 
    
         
            +
            /*! \see PrettyWriter::SetFormatOptions
         
     | 
| 
      
 29 
     | 
    
         
            +
             */
         
     | 
| 
      
 30 
     | 
    
         
            +
            enum PrettyFormatOptions {
         
     | 
| 
      
 31 
     | 
    
         
            +
                kFormatDefault = 0,         //!< Default pretty formatting.
         
     | 
| 
      
 32 
     | 
    
         
            +
                kFormatSingleLineArray = 1  //!< Format arrays on a single line.
         
     | 
| 
      
 33 
     | 
    
         
            +
            };
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            //! Writer with indentation and spacing.
         
     | 
| 
      
 36 
     | 
    
         
            +
            /*!
         
     | 
| 
      
 37 
     | 
    
         
            +
                \tparam OutputStream Type of ouptut os.
         
     | 
| 
      
 38 
     | 
    
         
            +
                \tparam SourceEncoding Encoding of source string.
         
     | 
| 
      
 39 
     | 
    
         
            +
                \tparam TargetEncoding Encoding of output stream.
         
     | 
| 
      
 40 
     | 
    
         
            +
                \tparam StackAllocator Type of allocator for allocating memory of stack.
         
     | 
| 
      
 41 
     | 
    
         
            +
            */
         
     | 
| 
      
 42 
     | 
    
         
            +
            template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
         
     | 
| 
      
 43 
     | 
    
         
            +
            class PrettyWriter : public Writer<OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags> {
         
     | 
| 
      
 44 
     | 
    
         
            +
            public:
         
     | 
| 
      
 45 
     | 
    
         
            +
                typedef Writer<OutputStream, SourceEncoding, TargetEncoding, StackAllocator> Base;
         
     | 
| 
      
 46 
     | 
    
         
            +
                typedef typename Base::Ch Ch;
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                //! Constructor
         
     | 
| 
      
 49 
     | 
    
         
            +
                /*! \param os Output stream.
         
     | 
| 
      
 50 
     | 
    
         
            +
                    \param allocator User supplied allocator. If it is null, it will create a private one.
         
     | 
| 
      
 51 
     | 
    
         
            +
                    \param levelDepth Initial capacity of stack.
         
     | 
| 
      
 52 
     | 
    
         
            +
                */
         
     | 
| 
      
 53 
     | 
    
         
            +
                explicit PrettyWriter(OutputStream& os, StackAllocator* allocator = 0, size_t levelDepth = Base::kDefaultLevelDepth) : 
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Base(os, allocator, levelDepth), indentChar_(' '), indentCharCount_(4), formatOptions_(kFormatDefault) {}
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
                explicit PrettyWriter(StackAllocator* allocator = 0, size_t levelDepth = Base::kDefaultLevelDepth) : 
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Base(allocator, levelDepth), indentChar_(' '), indentCharCount_(4) {}
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                //! Set custom indentation.
         
     | 
| 
      
 61 
     | 
    
         
            +
                /*! \param indentChar       Character for indentation. Must be whitespace character (' ', '\\t', '\\n', '\\r').
         
     | 
| 
      
 62 
     | 
    
         
            +
                    \param indentCharCount  Number of indent characters for each indentation level.
         
     | 
| 
      
 63 
     | 
    
         
            +
                    \note The default indentation is 4 spaces.
         
     | 
| 
      
 64 
     | 
    
         
            +
                */
         
     | 
| 
      
 65 
     | 
    
         
            +
                PrettyWriter& SetIndent(Ch indentChar, unsigned indentCharCount) {
         
     | 
| 
      
 66 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(indentChar == ' ' || indentChar == '\t' || indentChar == '\n' || indentChar == '\r');
         
     | 
| 
      
 67 
     | 
    
         
            +
                    indentChar_ = indentChar;
         
     | 
| 
      
 68 
     | 
    
         
            +
                    indentCharCount_ = indentCharCount;
         
     | 
| 
      
 69 
     | 
    
         
            +
                    return *this;
         
     | 
| 
      
 70 
     | 
    
         
            +
                }
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                //! Set pretty writer formatting options.
         
     | 
| 
      
 73 
     | 
    
         
            +
                /*! \param options Formatting options.
         
     | 
| 
      
 74 
     | 
    
         
            +
                */
         
     | 
| 
      
 75 
     | 
    
         
            +
                PrettyWriter& SetFormatOptions(PrettyFormatOptions options) {
         
     | 
| 
      
 76 
     | 
    
         
            +
                    formatOptions_ = options;
         
     | 
| 
      
 77 
     | 
    
         
            +
                    return *this;
         
     | 
| 
      
 78 
     | 
    
         
            +
                }
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                /*! @name Implementation of Handler
         
     | 
| 
      
 81 
     | 
    
         
            +
                    \see Handler
         
     | 
| 
      
 82 
     | 
    
         
            +
                */
         
     | 
| 
      
 83 
     | 
    
         
            +
                //@{
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
                bool Null()                 { PrettyPrefix(kNullType);   return Base::WriteNull(); }
         
     | 
| 
      
 86 
     | 
    
         
            +
                bool Bool(bool b)           { PrettyPrefix(b ? kTrueType : kFalseType); return Base::WriteBool(b); }
         
     | 
| 
      
 87 
     | 
    
         
            +
                bool Int(int i)             { PrettyPrefix(kNumberType); return Base::WriteInt(i); }
         
     | 
| 
      
 88 
     | 
    
         
            +
                bool Uint(unsigned u)       { PrettyPrefix(kNumberType); return Base::WriteUint(u); }
         
     | 
| 
      
 89 
     | 
    
         
            +
                bool Int64(int64_t i64)     { PrettyPrefix(kNumberType); return Base::WriteInt64(i64); }
         
     | 
| 
      
 90 
     | 
    
         
            +
                bool Uint64(uint64_t u64)   { PrettyPrefix(kNumberType); return Base::WriteUint64(u64);  }
         
     | 
| 
      
 91 
     | 
    
         
            +
                bool Double(double d)       { PrettyPrefix(kNumberType); return Base::WriteDouble(d); }
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                bool RawNumber(const Ch* str, SizeType length, bool copy = false) {
         
     | 
| 
      
 94 
     | 
    
         
            +
                    (void)copy;
         
     | 
| 
      
 95 
     | 
    
         
            +
                    PrettyPrefix(kNumberType);
         
     | 
| 
      
 96 
     | 
    
         
            +
                    return Base::WriteString(str, length);
         
     | 
| 
      
 97 
     | 
    
         
            +
                }
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
                bool String(const Ch* str, SizeType length, bool copy = false) {
         
     | 
| 
      
 100 
     | 
    
         
            +
                    (void)copy;
         
     | 
| 
      
 101 
     | 
    
         
            +
                    PrettyPrefix(kStringType);
         
     | 
| 
      
 102 
     | 
    
         
            +
                    return Base::WriteString(str, length);
         
     | 
| 
      
 103 
     | 
    
         
            +
                }
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
            #if RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 106 
     | 
    
         
            +
                bool String(const std::basic_string<Ch>& str) {
         
     | 
| 
      
 107 
     | 
    
         
            +
                    return String(str.data(), SizeType(str.size()));
         
     | 
| 
      
 108 
     | 
    
         
            +
                }
         
     | 
| 
      
 109 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                bool StartObject() {
         
     | 
| 
      
 112 
     | 
    
         
            +
                    PrettyPrefix(kObjectType);
         
     | 
| 
      
 113 
     | 
    
         
            +
                    new (Base::level_stack_.template Push<typename Base::Level>()) typename Base::Level(false);
         
     | 
| 
      
 114 
     | 
    
         
            +
                    return Base::WriteStartObject();
         
     | 
| 
      
 115 
     | 
    
         
            +
                }
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
                bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); }
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
            #if RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 120 
     | 
    
         
            +
                bool Key(const std::basic_string<Ch>& str) {
         
     | 
| 
      
 121 
     | 
    
         
            +
                    return Key(str.data(), SizeType(str.size()));
         
     | 
| 
      
 122 
     | 
    
         
            +
                }
         
     | 
| 
      
 123 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 124 
     | 
    
         
            +
            	
         
     | 
| 
      
 125 
     | 
    
         
            +
                bool EndObject(SizeType memberCount = 0) {
         
     | 
| 
      
 126 
     | 
    
         
            +
                    (void)memberCount;
         
     | 
| 
      
 127 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(Base::level_stack_.GetSize() >= sizeof(typename Base::Level));
         
     | 
| 
      
 128 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(!Base::level_stack_.template Top<typename Base::Level>()->inArray);
         
     | 
| 
      
 129 
     | 
    
         
            +
                    bool empty = Base::level_stack_.template Pop<typename Base::Level>(1)->valueCount == 0;
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
                    if (!empty) {
         
     | 
| 
      
 132 
     | 
    
         
            +
                        Base::os_->Put('\n');
         
     | 
| 
      
 133 
     | 
    
         
            +
                        WriteIndent();
         
     | 
| 
      
 134 
     | 
    
         
            +
                    }
         
     | 
| 
      
 135 
     | 
    
         
            +
                    bool ret = Base::WriteEndObject();
         
     | 
| 
      
 136 
     | 
    
         
            +
                    (void)ret;
         
     | 
| 
      
 137 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(ret == true);
         
     | 
| 
      
 138 
     | 
    
         
            +
                    if (Base::level_stack_.Empty()) // end of json text
         
     | 
| 
      
 139 
     | 
    
         
            +
                        Base::os_->Flush();
         
     | 
| 
      
 140 
     | 
    
         
            +
                    return true;
         
     | 
| 
      
 141 
     | 
    
         
            +
                }
         
     | 
| 
      
 142 
     | 
    
         
            +
             
     | 
| 
      
 143 
     | 
    
         
            +
                bool StartArray() {
         
     | 
| 
      
 144 
     | 
    
         
            +
                    PrettyPrefix(kArrayType);
         
     | 
| 
      
 145 
     | 
    
         
            +
                    new (Base::level_stack_.template Push<typename Base::Level>()) typename Base::Level(true);
         
     | 
| 
      
 146 
     | 
    
         
            +
                    return Base::WriteStartArray();
         
     | 
| 
      
 147 
     | 
    
         
            +
                }
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
                bool EndArray(SizeType memberCount = 0) {
         
     | 
| 
      
 150 
     | 
    
         
            +
                    (void)memberCount;
         
     | 
| 
      
 151 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(Base::level_stack_.GetSize() >= sizeof(typename Base::Level));
         
     | 
| 
      
 152 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(Base::level_stack_.template Top<typename Base::Level>()->inArray);
         
     | 
| 
      
 153 
     | 
    
         
            +
                    bool empty = Base::level_stack_.template Pop<typename Base::Level>(1)->valueCount == 0;
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
                    if (!empty && !(formatOptions_ & kFormatSingleLineArray)) {
         
     | 
| 
      
 156 
     | 
    
         
            +
                        Base::os_->Put('\n');
         
     | 
| 
      
 157 
     | 
    
         
            +
                        WriteIndent();
         
     | 
| 
      
 158 
     | 
    
         
            +
                    }
         
     | 
| 
      
 159 
     | 
    
         
            +
                    bool ret = Base::WriteEndArray();
         
     | 
| 
      
 160 
     | 
    
         
            +
                    (void)ret;
         
     | 
| 
      
 161 
     | 
    
         
            +
                    RAPIDJSON_ASSERT(ret == true);
         
     | 
| 
      
 162 
     | 
    
         
            +
                    if (Base::level_stack_.Empty()) // end of json text
         
     | 
| 
      
 163 
     | 
    
         
            +
                        Base::os_->Flush();
         
     | 
| 
      
 164 
     | 
    
         
            +
                    return true;
         
     | 
| 
      
 165 
     | 
    
         
            +
                }
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
                //@}
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
                /*! @name Convenience extensions */
         
     | 
| 
      
 170 
     | 
    
         
            +
                //@{
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
                //! Simpler but slower overload.
         
     | 
| 
      
 173 
     | 
    
         
            +
                bool String(const Ch* str) { return String(str, internal::StrLen(str)); }
         
     | 
| 
      
 174 
     | 
    
         
            +
                bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); }
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
                //@}
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
                //! Write a raw JSON value.
         
     | 
| 
      
 179 
     | 
    
         
            +
                /*!
         
     | 
| 
      
 180 
     | 
    
         
            +
                    For user to write a stringified JSON as a value.
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
                    \param json A well-formed JSON value. It should not contain null character within [0, length - 1] range.
         
     | 
| 
      
 183 
     | 
    
         
            +
                    \param length Length of the json.
         
     | 
| 
      
 184 
     | 
    
         
            +
                    \param type Type of the root of json.
         
     | 
| 
      
 185 
     | 
    
         
            +
                    \note When using PrettyWriter::RawValue(), the result json may not be indented correctly.
         
     | 
| 
      
 186 
     | 
    
         
            +
                */
         
     | 
| 
      
 187 
     | 
    
         
            +
                bool RawValue(const Ch* json, size_t length, Type type) { PrettyPrefix(type); return Base::WriteRawValue(json, length); }
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
            protected:
         
     | 
| 
      
 190 
     | 
    
         
            +
                void PrettyPrefix(Type type) {
         
     | 
| 
      
 191 
     | 
    
         
            +
                    (void)type;
         
     | 
| 
      
 192 
     | 
    
         
            +
                    if (Base::level_stack_.GetSize() != 0) { // this value is not at root
         
     | 
| 
      
 193 
     | 
    
         
            +
                        typename Base::Level* level = Base::level_stack_.template Top<typename Base::Level>();
         
     | 
| 
      
 194 
     | 
    
         
            +
             
     | 
| 
      
 195 
     | 
    
         
            +
                        if (level->inArray) {
         
     | 
| 
      
 196 
     | 
    
         
            +
                            if (level->valueCount > 0) {
         
     | 
| 
      
 197 
     | 
    
         
            +
                                Base::os_->Put(','); // add comma if it is not the first element in array
         
     | 
| 
      
 198 
     | 
    
         
            +
                                if (formatOptions_ & kFormatSingleLineArray)
         
     | 
| 
      
 199 
     | 
    
         
            +
                                    Base::os_->Put(' ');
         
     | 
| 
      
 200 
     | 
    
         
            +
                            }
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
                            if (!(formatOptions_ & kFormatSingleLineArray)) {
         
     | 
| 
      
 203 
     | 
    
         
            +
                                Base::os_->Put('\n');
         
     | 
| 
      
 204 
     | 
    
         
            +
                                WriteIndent();
         
     | 
| 
      
 205 
     | 
    
         
            +
                            }
         
     | 
| 
      
 206 
     | 
    
         
            +
                        }
         
     | 
| 
      
 207 
     | 
    
         
            +
                        else {  // in object
         
     | 
| 
      
 208 
     | 
    
         
            +
                            if (level->valueCount > 0) {
         
     | 
| 
      
 209 
     | 
    
         
            +
                                if (level->valueCount % 2 == 0) {
         
     | 
| 
      
 210 
     | 
    
         
            +
                                    Base::os_->Put(',');
         
     | 
| 
      
 211 
     | 
    
         
            +
                                    Base::os_->Put('\n');
         
     | 
| 
      
 212 
     | 
    
         
            +
                                }
         
     | 
| 
      
 213 
     | 
    
         
            +
                                else {
         
     | 
| 
      
 214 
     | 
    
         
            +
                                    Base::os_->Put(':');
         
     | 
| 
      
 215 
     | 
    
         
            +
                                    Base::os_->Put(' ');
         
     | 
| 
      
 216 
     | 
    
         
            +
                                }
         
     | 
| 
      
 217 
     | 
    
         
            +
                            }
         
     | 
| 
      
 218 
     | 
    
         
            +
                            else
         
     | 
| 
      
 219 
     | 
    
         
            +
                                Base::os_->Put('\n');
         
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
                            if (level->valueCount % 2 == 0)
         
     | 
| 
      
 222 
     | 
    
         
            +
                                WriteIndent();
         
     | 
| 
      
 223 
     | 
    
         
            +
                        }
         
     | 
| 
      
 224 
     | 
    
         
            +
                        if (!level->inArray && level->valueCount % 2 == 0)
         
     | 
| 
      
 225 
     | 
    
         
            +
                            RAPIDJSON_ASSERT(type == kStringType);  // if it's in object, then even number should be a name
         
     | 
| 
      
 226 
     | 
    
         
            +
                        level->valueCount++;
         
     | 
| 
      
 227 
     | 
    
         
            +
                    }
         
     | 
| 
      
 228 
     | 
    
         
            +
                    else {
         
     | 
| 
      
 229 
     | 
    
         
            +
                        RAPIDJSON_ASSERT(!Base::hasRoot_);  // Should only has one and only one root.
         
     | 
| 
      
 230 
     | 
    
         
            +
                        Base::hasRoot_ = true;
         
     | 
| 
      
 231 
     | 
    
         
            +
                    }
         
     | 
| 
      
 232 
     | 
    
         
            +
                }
         
     | 
| 
      
 233 
     | 
    
         
            +
             
     | 
| 
      
 234 
     | 
    
         
            +
                void WriteIndent()  {
         
     | 
| 
      
 235 
     | 
    
         
            +
                    size_t count = (Base::level_stack_.GetSize() / sizeof(typename Base::Level)) * indentCharCount_;
         
     | 
| 
      
 236 
     | 
    
         
            +
                    PutN(*Base::os_, static_cast<typename TargetEncoding::Ch>(indentChar_), count);
         
     | 
| 
      
 237 
     | 
    
         
            +
                }
         
     | 
| 
      
 238 
     | 
    
         
            +
             
     | 
| 
      
 239 
     | 
    
         
            +
                Ch indentChar_;
         
     | 
| 
      
 240 
     | 
    
         
            +
                unsigned indentCharCount_;
         
     | 
| 
      
 241 
     | 
    
         
            +
                PrettyFormatOptions formatOptions_;
         
     | 
| 
      
 242 
     | 
    
         
            +
             
     | 
| 
      
 243 
     | 
    
         
            +
            private:
         
     | 
| 
      
 244 
     | 
    
         
            +
                // Prohibit copy constructor & assignment operator.
         
     | 
| 
      
 245 
     | 
    
         
            +
                PrettyWriter(const PrettyWriter&);
         
     | 
| 
      
 246 
     | 
    
         
            +
                PrettyWriter& operator=(const PrettyWriter&);
         
     | 
| 
      
 247 
     | 
    
         
            +
            };
         
     | 
| 
      
 248 
     | 
    
         
            +
             
     | 
| 
      
 249 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
            #ifdef __GNUC__
         
     | 
| 
      
 252 
     | 
    
         
            +
            RAPIDJSON_DIAG_POP
         
     | 
| 
      
 253 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 254 
     | 
    
         
            +
             
     | 
| 
      
 255 
     | 
    
         
            +
            #endif // RAPIDJSON_RAPIDJSON_H_
         
     | 
| 
         @@ -0,0 +1,615 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // Tencent is pleased to support the open source community by making RapidJSON available.
         
     | 
| 
      
 2 
     | 
    
         
            +
            // 
         
     | 
| 
      
 3 
     | 
    
         
            +
            // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
         
     | 
| 
      
 4 
     | 
    
         
            +
            //
         
     | 
| 
      
 5 
     | 
    
         
            +
            // Licensed under the MIT License (the "License"); you may not use this file except
         
     | 
| 
      
 6 
     | 
    
         
            +
            // in compliance with the License. You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            //
         
     | 
| 
      
 8 
     | 
    
         
            +
            // http://opensource.org/licenses/MIT
         
     | 
| 
      
 9 
     | 
    
         
            +
            //
         
     | 
| 
      
 10 
     | 
    
         
            +
            // Unless required by applicable law or agreed to in writing, software distributed 
         
     | 
| 
      
 11 
     | 
    
         
            +
            // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
         
     | 
| 
      
 12 
     | 
    
         
            +
            // CONDITIONS OF ANY KIND, either express or implied. See the License for the 
         
     | 
| 
      
 13 
     | 
    
         
            +
            // specific language governing permissions and limitations under the License.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            #ifndef RAPIDJSON_RAPIDJSON_H_
         
     | 
| 
      
 16 
     | 
    
         
            +
            #define RAPIDJSON_RAPIDJSON_H_
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            /*!\file rapidjson.h
         
     | 
| 
      
 19 
     | 
    
         
            +
                \brief common definitions and configuration
         
     | 
| 
      
 20 
     | 
    
         
            +
                
         
     | 
| 
      
 21 
     | 
    
         
            +
                \see RAPIDJSON_CONFIG
         
     | 
| 
      
 22 
     | 
    
         
            +
             */
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            /*! \defgroup RAPIDJSON_CONFIG RapidJSON configuration
         
     | 
| 
      
 25 
     | 
    
         
            +
                \brief Configuration macros for library features
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                Some RapidJSON features are configurable to adapt the library to a wide
         
     | 
| 
      
 28 
     | 
    
         
            +
                variety of platforms, environments and usage scenarios.  Most of the
         
     | 
| 
      
 29 
     | 
    
         
            +
                features can be configured in terms of overriden or predefined
         
     | 
| 
      
 30 
     | 
    
         
            +
                preprocessor macros at compile-time.
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                Some additional customization is available in the \ref RAPIDJSON_ERRORS APIs.
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                \note These macros should be given on the compiler command-line
         
     | 
| 
      
 35 
     | 
    
         
            +
                      (where applicable)  to avoid inconsistent values when compiling
         
     | 
| 
      
 36 
     | 
    
         
            +
                      different translation units of a single application.
         
     | 
| 
      
 37 
     | 
    
         
            +
             */
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            #include <cstdlib>  // malloc(), realloc(), free(), size_t
         
     | 
| 
      
 40 
     | 
    
         
            +
            #include <cstring>  // memset(), memcpy(), memmove(), memcmp()
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 43 
     | 
    
         
            +
            // RAPIDJSON_VERSION_STRING
         
     | 
| 
      
 44 
     | 
    
         
            +
            //
         
     | 
| 
      
 45 
     | 
    
         
            +
            // ALWAYS synchronize the following 3 macros with corresponding variables in /CMakeLists.txt.
         
     | 
| 
      
 46 
     | 
    
         
            +
            //
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            //!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN
         
     | 
| 
      
 49 
     | 
    
         
            +
            // token stringification
         
     | 
| 
      
 50 
     | 
    
         
            +
            #define RAPIDJSON_STRINGIFY(x) RAPIDJSON_DO_STRINGIFY(x)
         
     | 
| 
      
 51 
     | 
    
         
            +
            #define RAPIDJSON_DO_STRINGIFY(x) #x
         
     | 
| 
      
 52 
     | 
    
         
            +
            //!@endcond
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
            /*! \def RAPIDJSON_MAJOR_VERSION
         
     | 
| 
      
 55 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 56 
     | 
    
         
            +
                \brief Major version of RapidJSON in integer.
         
     | 
| 
      
 57 
     | 
    
         
            +
            */
         
     | 
| 
      
 58 
     | 
    
         
            +
            /*! \def RAPIDJSON_MINOR_VERSION
         
     | 
| 
      
 59 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 60 
     | 
    
         
            +
                \brief Minor version of RapidJSON in integer.
         
     | 
| 
      
 61 
     | 
    
         
            +
            */
         
     | 
| 
      
 62 
     | 
    
         
            +
            /*! \def RAPIDJSON_PATCH_VERSION
         
     | 
| 
      
 63 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 64 
     | 
    
         
            +
                \brief Patch version of RapidJSON in integer.
         
     | 
| 
      
 65 
     | 
    
         
            +
            */
         
     | 
| 
      
 66 
     | 
    
         
            +
            /*! \def RAPIDJSON_VERSION_STRING
         
     | 
| 
      
 67 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 68 
     | 
    
         
            +
                \brief Version of RapidJSON in "<major>.<minor>.<patch>" string format.
         
     | 
| 
      
 69 
     | 
    
         
            +
            */
         
     | 
| 
      
 70 
     | 
    
         
            +
            #define RAPIDJSON_MAJOR_VERSION 1
         
     | 
| 
      
 71 
     | 
    
         
            +
            #define RAPIDJSON_MINOR_VERSION 1
         
     | 
| 
      
 72 
     | 
    
         
            +
            #define RAPIDJSON_PATCH_VERSION 0
         
     | 
| 
      
 73 
     | 
    
         
            +
            #define RAPIDJSON_VERSION_STRING \
         
     | 
| 
      
 74 
     | 
    
         
            +
                RAPIDJSON_STRINGIFY(RAPIDJSON_MAJOR_VERSION.RAPIDJSON_MINOR_VERSION.RAPIDJSON_PATCH_VERSION)
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 77 
     | 
    
         
            +
            // RAPIDJSON_NAMESPACE_(BEGIN|END)
         
     | 
| 
      
 78 
     | 
    
         
            +
            /*! \def RAPIDJSON_NAMESPACE
         
     | 
| 
      
 79 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 80 
     | 
    
         
            +
                \brief   provide custom rapidjson namespace
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                In order to avoid symbol clashes and/or "One Definition Rule" errors
         
     | 
| 
      
 83 
     | 
    
         
            +
                between multiple inclusions of (different versions of) RapidJSON in
         
     | 
| 
      
 84 
     | 
    
         
            +
                a single binary, users can customize the name of the main RapidJSON
         
     | 
| 
      
 85 
     | 
    
         
            +
                namespace.
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                In case of a single nesting level, defining \c RAPIDJSON_NAMESPACE
         
     | 
| 
      
 88 
     | 
    
         
            +
                to a custom name (e.g. \c MyRapidJSON) is sufficient.  If multiple
         
     | 
| 
      
 89 
     | 
    
         
            +
                levels are needed, both \ref RAPIDJSON_NAMESPACE_BEGIN and \ref
         
     | 
| 
      
 90 
     | 
    
         
            +
                RAPIDJSON_NAMESPACE_END need to be defined as well:
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                \code
         
     | 
| 
      
 93 
     | 
    
         
            +
                // in some .cpp file
         
     | 
| 
      
 94 
     | 
    
         
            +
                #define RAPIDJSON_NAMESPACE my::rapidjson
         
     | 
| 
      
 95 
     | 
    
         
            +
                #define RAPIDJSON_NAMESPACE_BEGIN namespace my { namespace rapidjson {
         
     | 
| 
      
 96 
     | 
    
         
            +
                #define RAPIDJSON_NAMESPACE_END   } }
         
     | 
| 
      
 97 
     | 
    
         
            +
                #include "rapidjson/..."
         
     | 
| 
      
 98 
     | 
    
         
            +
                \endcode
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
                \see rapidjson
         
     | 
| 
      
 101 
     | 
    
         
            +
             */
         
     | 
| 
      
 102 
     | 
    
         
            +
            /*! \def RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 103 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 104 
     | 
    
         
            +
                \brief   provide custom rapidjson namespace (opening expression)
         
     | 
| 
      
 105 
     | 
    
         
            +
                \see RAPIDJSON_NAMESPACE
         
     | 
| 
      
 106 
     | 
    
         
            +
            */
         
     | 
| 
      
 107 
     | 
    
         
            +
            /*! \def RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 108 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 109 
     | 
    
         
            +
                \brief   provide custom rapidjson namespace (closing expression)
         
     | 
| 
      
 110 
     | 
    
         
            +
                \see RAPIDJSON_NAMESPACE
         
     | 
| 
      
 111 
     | 
    
         
            +
            */
         
     | 
| 
      
 112 
     | 
    
         
            +
            #ifndef RAPIDJSON_NAMESPACE
         
     | 
| 
      
 113 
     | 
    
         
            +
            #define RAPIDJSON_NAMESPACE rapidjson
         
     | 
| 
      
 114 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 115 
     | 
    
         
            +
            #ifndef RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 116 
     | 
    
         
            +
            #define RAPIDJSON_NAMESPACE_BEGIN namespace RAPIDJSON_NAMESPACE {
         
     | 
| 
      
 117 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 118 
     | 
    
         
            +
            #ifndef RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 119 
     | 
    
         
            +
            #define RAPIDJSON_NAMESPACE_END }
         
     | 
| 
      
 120 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 121 
     | 
    
         
            +
             
     | 
| 
      
 122 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 123 
     | 
    
         
            +
            // RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
            #ifndef RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 126 
     | 
    
         
            +
            #ifdef RAPIDJSON_DOXYGEN_RUNNING
         
     | 
| 
      
 127 
     | 
    
         
            +
            #define RAPIDJSON_HAS_STDSTRING 1 // force generation of documentation
         
     | 
| 
      
 128 
     | 
    
         
            +
            #else
         
     | 
| 
      
 129 
     | 
    
         
            +
            #define RAPIDJSON_HAS_STDSTRING 0 // no std::string support by default
         
     | 
| 
      
 130 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 131 
     | 
    
         
            +
            /*! \def RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 132 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 133 
     | 
    
         
            +
                \brief Enable RapidJSON support for \c std::string
         
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
                By defining this preprocessor symbol to \c 1, several convenience functions for using
         
     | 
| 
      
 136 
     | 
    
         
            +
                \ref rapidjson::GenericValue with \c std::string are enabled, especially
         
     | 
| 
      
 137 
     | 
    
         
            +
                for construction and comparison.
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
                \hideinitializer
         
     | 
| 
      
 140 
     | 
    
         
            +
            */
         
     | 
| 
      
 141 
     | 
    
         
            +
            #endif // !defined(RAPIDJSON_HAS_STDSTRING)
         
     | 
| 
      
 142 
     | 
    
         
            +
             
     | 
| 
      
 143 
     | 
    
         
            +
            #if RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 144 
     | 
    
         
            +
            #include <string>
         
     | 
| 
      
 145 
     | 
    
         
            +
            #endif // RAPIDJSON_HAS_STDSTRING
         
     | 
| 
      
 146 
     | 
    
         
            +
             
     | 
| 
      
 147 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 148 
     | 
    
         
            +
            // RAPIDJSON_NO_INT64DEFINE
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
            /*! \def RAPIDJSON_NO_INT64DEFINE
         
     | 
| 
      
 151 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 152 
     | 
    
         
            +
                \brief Use external 64-bit integer types.
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
                RapidJSON requires the 64-bit integer types \c int64_t and  \c uint64_t types
         
     | 
| 
      
 155 
     | 
    
         
            +
                to be available at global scope.
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
                If users have their own definition, define RAPIDJSON_NO_INT64DEFINE to
         
     | 
| 
      
 158 
     | 
    
         
            +
                prevent RapidJSON from defining its own types.
         
     | 
| 
      
 159 
     | 
    
         
            +
            */
         
     | 
| 
      
 160 
     | 
    
         
            +
            #ifndef RAPIDJSON_NO_INT64DEFINE
         
     | 
| 
      
 161 
     | 
    
         
            +
            //!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN
         
     | 
| 
      
 162 
     | 
    
         
            +
            #if defined(_MSC_VER) && (_MSC_VER < 1800)	// Visual Studio 2013
         
     | 
| 
      
 163 
     | 
    
         
            +
            #include "msinttypes/stdint.h"
         
     | 
| 
      
 164 
     | 
    
         
            +
            #include "msinttypes/inttypes.h"
         
     | 
| 
      
 165 
     | 
    
         
            +
            #else
         
     | 
| 
      
 166 
     | 
    
         
            +
            // Other compilers should have this.
         
     | 
| 
      
 167 
     | 
    
         
            +
            #include <stdint.h>
         
     | 
| 
      
 168 
     | 
    
         
            +
            #include <inttypes.h>
         
     | 
| 
      
 169 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 170 
     | 
    
         
            +
            //!@endcond
         
     | 
| 
      
 171 
     | 
    
         
            +
            #ifdef RAPIDJSON_DOXYGEN_RUNNING
         
     | 
| 
      
 172 
     | 
    
         
            +
            #define RAPIDJSON_NO_INT64DEFINE
         
     | 
| 
      
 173 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 174 
     | 
    
         
            +
            #endif // RAPIDJSON_NO_INT64TYPEDEF
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 177 
     | 
    
         
            +
            // RAPIDJSON_FORCEINLINE
         
     | 
| 
      
 178 
     | 
    
         
            +
             
     | 
| 
      
 179 
     | 
    
         
            +
            #ifndef RAPIDJSON_FORCEINLINE
         
     | 
| 
      
 180 
     | 
    
         
            +
            //!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN
         
     | 
| 
      
 181 
     | 
    
         
            +
            #if defined(_MSC_VER) && defined(NDEBUG)
         
     | 
| 
      
 182 
     | 
    
         
            +
            #define RAPIDJSON_FORCEINLINE __forceinline
         
     | 
| 
      
 183 
     | 
    
         
            +
            #elif defined(__GNUC__) && __GNUC__ >= 4 && defined(NDEBUG)
         
     | 
| 
      
 184 
     | 
    
         
            +
            #define RAPIDJSON_FORCEINLINE __attribute__((always_inline))
         
     | 
| 
      
 185 
     | 
    
         
            +
            #else
         
     | 
| 
      
 186 
     | 
    
         
            +
            #define RAPIDJSON_FORCEINLINE
         
     | 
| 
      
 187 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 188 
     | 
    
         
            +
            //!@endcond
         
     | 
| 
      
 189 
     | 
    
         
            +
            #endif // RAPIDJSON_FORCEINLINE
         
     | 
| 
      
 190 
     | 
    
         
            +
             
     | 
| 
      
 191 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 192 
     | 
    
         
            +
            // RAPIDJSON_ENDIAN
         
     | 
| 
      
 193 
     | 
    
         
            +
            #define RAPIDJSON_LITTLEENDIAN  0   //!< Little endian machine
         
     | 
| 
      
 194 
     | 
    
         
            +
            #define RAPIDJSON_BIGENDIAN     1   //!< Big endian machine
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            //! Endianness of the machine.
         
     | 
| 
      
 197 
     | 
    
         
            +
            /*!
         
     | 
| 
      
 198 
     | 
    
         
            +
                \def RAPIDJSON_ENDIAN
         
     | 
| 
      
 199 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
                GCC 4.6 provided macro for detecting endianness of the target machine. But other
         
     | 
| 
      
 202 
     | 
    
         
            +
                compilers may not have this. User can define RAPIDJSON_ENDIAN to either
         
     | 
| 
      
 203 
     | 
    
         
            +
                \ref RAPIDJSON_LITTLEENDIAN or \ref RAPIDJSON_BIGENDIAN.
         
     | 
| 
      
 204 
     | 
    
         
            +
             
     | 
| 
      
 205 
     | 
    
         
            +
                Default detection implemented with reference to
         
     | 
| 
      
 206 
     | 
    
         
            +
                \li https://gcc.gnu.org/onlinedocs/gcc-4.6.0/cpp/Common-Predefined-Macros.html
         
     | 
| 
      
 207 
     | 
    
         
            +
                \li http://www.boost.org/doc/libs/1_42_0/boost/detail/endian.hpp
         
     | 
| 
      
 208 
     | 
    
         
            +
            */
         
     | 
| 
      
 209 
     | 
    
         
            +
            #ifndef RAPIDJSON_ENDIAN
         
     | 
| 
      
 210 
     | 
    
         
            +
            // Detect with GCC 4.6's macro
         
     | 
| 
      
 211 
     | 
    
         
            +
            #  ifdef __BYTE_ORDER__
         
     | 
| 
      
 212 
     | 
    
         
            +
            #    if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
         
     | 
| 
      
 213 
     | 
    
         
            +
            #      define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN
         
     | 
| 
      
 214 
     | 
    
         
            +
            #    elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
         
     | 
| 
      
 215 
     | 
    
         
            +
            #      define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN
         
     | 
| 
      
 216 
     | 
    
         
            +
            #    else
         
     | 
| 
      
 217 
     | 
    
         
            +
            #      error Unknown machine endianess detected. User needs to define RAPIDJSON_ENDIAN.
         
     | 
| 
      
 218 
     | 
    
         
            +
            #    endif // __BYTE_ORDER__
         
     | 
| 
      
 219 
     | 
    
         
            +
            // Detect with GLIBC's endian.h
         
     | 
| 
      
 220 
     | 
    
         
            +
            #  elif defined(__GLIBC__)
         
     | 
| 
      
 221 
     | 
    
         
            +
            #    include <endian.h>
         
     | 
| 
      
 222 
     | 
    
         
            +
            #    if (__BYTE_ORDER == __LITTLE_ENDIAN)
         
     | 
| 
      
 223 
     | 
    
         
            +
            #      define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN
         
     | 
| 
      
 224 
     | 
    
         
            +
            #    elif (__BYTE_ORDER == __BIG_ENDIAN)
         
     | 
| 
      
 225 
     | 
    
         
            +
            #      define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN
         
     | 
| 
      
 226 
     | 
    
         
            +
            #    else
         
     | 
| 
      
 227 
     | 
    
         
            +
            #      error Unknown machine endianess detected. User needs to define RAPIDJSON_ENDIAN.
         
     | 
| 
      
 228 
     | 
    
         
            +
            #   endif // __GLIBC__
         
     | 
| 
      
 229 
     | 
    
         
            +
            // Detect with _LITTLE_ENDIAN and _BIG_ENDIAN macro
         
     | 
| 
      
 230 
     | 
    
         
            +
            #  elif defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
         
     | 
| 
      
 231 
     | 
    
         
            +
            #    define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN
         
     | 
| 
      
 232 
     | 
    
         
            +
            #  elif defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN)
         
     | 
| 
      
 233 
     | 
    
         
            +
            #    define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN
         
     | 
| 
      
 234 
     | 
    
         
            +
            // Detect with architecture macros
         
     | 
| 
      
 235 
     | 
    
         
            +
            #  elif defined(__sparc) || defined(__sparc__) || defined(_POWER) || defined(__powerpc__) || defined(__ppc__) || defined(__hpux) || defined(__hppa) || defined(_MIPSEB) || defined(_POWER) || defined(__s390__)
         
     | 
| 
      
 236 
     | 
    
         
            +
            #    define RAPIDJSON_ENDIAN RAPIDJSON_BIGENDIAN
         
     | 
| 
      
 237 
     | 
    
         
            +
            #  elif defined(__i386__) || defined(__alpha__) || defined(__ia64) || defined(__ia64__) || defined(_M_IX86) || defined(_M_IA64) || defined(_M_ALPHA) || defined(__amd64) || defined(__amd64__) || defined(_M_AMD64) || defined(__x86_64) || defined(__x86_64__) || defined(_M_X64) || defined(__bfin__)
         
     | 
| 
      
 238 
     | 
    
         
            +
            #    define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN
         
     | 
| 
      
 239 
     | 
    
         
            +
            #  elif defined(_MSC_VER) && defined(_M_ARM)
         
     | 
| 
      
 240 
     | 
    
         
            +
            #    define RAPIDJSON_ENDIAN RAPIDJSON_LITTLEENDIAN
         
     | 
| 
      
 241 
     | 
    
         
            +
            #  elif defined(RAPIDJSON_DOXYGEN_RUNNING)
         
     | 
| 
      
 242 
     | 
    
         
            +
            #    define RAPIDJSON_ENDIAN
         
     | 
| 
      
 243 
     | 
    
         
            +
            #  else
         
     | 
| 
      
 244 
     | 
    
         
            +
            #    error Unknown machine endianess detected. User needs to define RAPIDJSON_ENDIAN.   
         
     | 
| 
      
 245 
     | 
    
         
            +
            #  endif
         
     | 
| 
      
 246 
     | 
    
         
            +
            #endif // RAPIDJSON_ENDIAN
         
     | 
| 
      
 247 
     | 
    
         
            +
             
     | 
| 
      
 248 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 249 
     | 
    
         
            +
            // RAPIDJSON_64BIT
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
            //! Whether using 64-bit architecture
         
     | 
| 
      
 252 
     | 
    
         
            +
            #ifndef RAPIDJSON_64BIT
         
     | 
| 
      
 253 
     | 
    
         
            +
            #if defined(__LP64__) || (defined(__x86_64__) && defined(__ILP32__)) || defined(_WIN64) || defined(__EMSCRIPTEN__)
         
     | 
| 
      
 254 
     | 
    
         
            +
            #define RAPIDJSON_64BIT 1
         
     | 
| 
      
 255 
     | 
    
         
            +
            #else
         
     | 
| 
      
 256 
     | 
    
         
            +
            #define RAPIDJSON_64BIT 0
         
     | 
| 
      
 257 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 258 
     | 
    
         
            +
            #endif // RAPIDJSON_64BIT
         
     | 
| 
      
 259 
     | 
    
         
            +
             
     | 
| 
      
 260 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 261 
     | 
    
         
            +
            // RAPIDJSON_ALIGN
         
     | 
| 
      
 262 
     | 
    
         
            +
             
     | 
| 
      
 263 
     | 
    
         
            +
            //! Data alignment of the machine.
         
     | 
| 
      
 264 
     | 
    
         
            +
            /*! \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 265 
     | 
    
         
            +
                \param x pointer to align
         
     | 
| 
      
 266 
     | 
    
         
            +
             
     | 
| 
      
 267 
     | 
    
         
            +
                Some machines require strict data alignment. Currently the default uses 4 bytes
         
     | 
| 
      
 268 
     | 
    
         
            +
                alignment on 32-bit platforms and 8 bytes alignment for 64-bit platforms.
         
     | 
| 
      
 269 
     | 
    
         
            +
                User can customize by defining the RAPIDJSON_ALIGN function macro.
         
     | 
| 
      
 270 
     | 
    
         
            +
            */
         
     | 
| 
      
 271 
     | 
    
         
            +
            #ifndef RAPIDJSON_ALIGN
         
     | 
| 
      
 272 
     | 
    
         
            +
            #if RAPIDJSON_64BIT == 1
         
     | 
| 
      
 273 
     | 
    
         
            +
            #define RAPIDJSON_ALIGN(x) (((x) + static_cast<uint64_t>(7u)) & ~static_cast<uint64_t>(7u))
         
     | 
| 
      
 274 
     | 
    
         
            +
            #else
         
     | 
| 
      
 275 
     | 
    
         
            +
            #define RAPIDJSON_ALIGN(x) (((x) + 3u) & ~3u)
         
     | 
| 
      
 276 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 277 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 278 
     | 
    
         
            +
             
     | 
| 
      
 279 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 280 
     | 
    
         
            +
            // RAPIDJSON_UINT64_C2
         
     | 
| 
      
 281 
     | 
    
         
            +
             
     | 
| 
      
 282 
     | 
    
         
            +
            //! Construct a 64-bit literal by a pair of 32-bit integer.
         
     | 
| 
      
 283 
     | 
    
         
            +
            /*!
         
     | 
| 
      
 284 
     | 
    
         
            +
                64-bit literal with or without ULL suffix is prone to compiler warnings.
         
     | 
| 
      
 285 
     | 
    
         
            +
                UINT64_C() is C macro which cause compilation problems.
         
     | 
| 
      
 286 
     | 
    
         
            +
                Use this macro to define 64-bit constants by a pair of 32-bit integer.
         
     | 
| 
      
 287 
     | 
    
         
            +
            */
         
     | 
| 
      
 288 
     | 
    
         
            +
            #ifndef RAPIDJSON_UINT64_C2
         
     | 
| 
      
 289 
     | 
    
         
            +
            #define RAPIDJSON_UINT64_C2(high32, low32) ((static_cast<uint64_t>(high32) << 32) | static_cast<uint64_t>(low32))
         
     | 
| 
      
 290 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 293 
     | 
    
         
            +
            // RAPIDJSON_48BITPOINTER_OPTIMIZATION
         
     | 
| 
      
 294 
     | 
    
         
            +
             
     | 
| 
      
 295 
     | 
    
         
            +
            //! Use only lower 48-bit address for some pointers.
         
     | 
| 
      
 296 
     | 
    
         
            +
            /*!
         
     | 
| 
      
 297 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 298 
     | 
    
         
            +
             
     | 
| 
      
 299 
     | 
    
         
            +
                This optimization uses the fact that current X86-64 architecture only implement lower 48-bit virtual address.
         
     | 
| 
      
 300 
     | 
    
         
            +
                The higher 16-bit can be used for storing other data.
         
     | 
| 
      
 301 
     | 
    
         
            +
                \c GenericValue uses this optimization to reduce its size form 24 bytes to 16 bytes in 64-bit architecture.
         
     | 
| 
      
 302 
     | 
    
         
            +
            */
         
     | 
| 
      
 303 
     | 
    
         
            +
            #ifndef RAPIDJSON_48BITPOINTER_OPTIMIZATION
         
     | 
| 
      
 304 
     | 
    
         
            +
            #if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64)
         
     | 
| 
      
 305 
     | 
    
         
            +
            #define RAPIDJSON_48BITPOINTER_OPTIMIZATION 1
         
     | 
| 
      
 306 
     | 
    
         
            +
            #else
         
     | 
| 
      
 307 
     | 
    
         
            +
            #define RAPIDJSON_48BITPOINTER_OPTIMIZATION 0
         
     | 
| 
      
 308 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 309 
     | 
    
         
            +
            #endif // RAPIDJSON_48BITPOINTER_OPTIMIZATION
         
     | 
| 
      
 310 
     | 
    
         
            +
             
     | 
| 
      
 311 
     | 
    
         
            +
            #if RAPIDJSON_48BITPOINTER_OPTIMIZATION == 1
         
     | 
| 
      
 312 
     | 
    
         
            +
            #if RAPIDJSON_64BIT != 1
         
     | 
| 
      
 313 
     | 
    
         
            +
            #error RAPIDJSON_48BITPOINTER_OPTIMIZATION can only be set to 1 when RAPIDJSON_64BIT=1
         
     | 
| 
      
 314 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 315 
     | 
    
         
            +
            #define RAPIDJSON_SETPOINTER(type, p, x) (p = reinterpret_cast<type *>((reinterpret_cast<uintptr_t>(p) & static_cast<uintptr_t>(RAPIDJSON_UINT64_C2(0xFFFF0000, 0x00000000))) | reinterpret_cast<uintptr_t>(reinterpret_cast<const void*>(x))))
         
     | 
| 
      
 316 
     | 
    
         
            +
            #define RAPIDJSON_GETPOINTER(type, p) (reinterpret_cast<type *>(reinterpret_cast<uintptr_t>(p) & static_cast<uintptr_t>(RAPIDJSON_UINT64_C2(0x0000FFFF, 0xFFFFFFFF))))
         
     | 
| 
      
 317 
     | 
    
         
            +
            #else
         
     | 
| 
      
 318 
     | 
    
         
            +
            #define RAPIDJSON_SETPOINTER(type, p, x) (p = (x))
         
     | 
| 
      
 319 
     | 
    
         
            +
            #define RAPIDJSON_GETPOINTER(type, p) (p)
         
     | 
| 
      
 320 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 321 
     | 
    
         
            +
             
     | 
| 
      
 322 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 323 
     | 
    
         
            +
            // RAPIDJSON_SSE2/RAPIDJSON_SSE42/RAPIDJSON_SIMD
         
     | 
| 
      
 324 
     | 
    
         
            +
             
     | 
| 
      
 325 
     | 
    
         
            +
            /*! \def RAPIDJSON_SIMD
         
     | 
| 
      
 326 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 327 
     | 
    
         
            +
                \brief Enable SSE2/SSE4.2 optimization.
         
     | 
| 
      
 328 
     | 
    
         
            +
             
     | 
| 
      
 329 
     | 
    
         
            +
                RapidJSON supports optimized implementations for some parsing operations
         
     | 
| 
      
 330 
     | 
    
         
            +
                based on the SSE2 or SSE4.2 SIMD extensions on modern Intel-compatible
         
     | 
| 
      
 331 
     | 
    
         
            +
                processors.
         
     | 
| 
      
 332 
     | 
    
         
            +
             
     | 
| 
      
 333 
     | 
    
         
            +
                To enable these optimizations, two different symbols can be defined;
         
     | 
| 
      
 334 
     | 
    
         
            +
                \code
         
     | 
| 
      
 335 
     | 
    
         
            +
                // Enable SSE2 optimization.
         
     | 
| 
      
 336 
     | 
    
         
            +
                #define RAPIDJSON_SSE2
         
     | 
| 
      
 337 
     | 
    
         
            +
             
     | 
| 
      
 338 
     | 
    
         
            +
                // Enable SSE4.2 optimization.
         
     | 
| 
      
 339 
     | 
    
         
            +
                #define RAPIDJSON_SSE42
         
     | 
| 
      
 340 
     | 
    
         
            +
                \endcode
         
     | 
| 
      
 341 
     | 
    
         
            +
             
     | 
| 
      
 342 
     | 
    
         
            +
                \c RAPIDJSON_SSE42 takes precedence, if both are defined.
         
     | 
| 
      
 343 
     | 
    
         
            +
             
     | 
| 
      
 344 
     | 
    
         
            +
                If any of these symbols is defined, RapidJSON defines the macro
         
     | 
| 
      
 345 
     | 
    
         
            +
                \c RAPIDJSON_SIMD to indicate the availability of the optimized code.
         
     | 
| 
      
 346 
     | 
    
         
            +
            */
         
     | 
| 
      
 347 
     | 
    
         
            +
            #if defined(RAPIDJSON_SSE2) || defined(RAPIDJSON_SSE42) \
         
     | 
| 
      
 348 
     | 
    
         
            +
                || defined(RAPIDJSON_DOXYGEN_RUNNING)
         
     | 
| 
      
 349 
     | 
    
         
            +
            #define RAPIDJSON_SIMD
         
     | 
| 
      
 350 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 351 
     | 
    
         
            +
             
     | 
| 
      
 352 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 353 
     | 
    
         
            +
            // RAPIDJSON_NO_SIZETYPEDEFINE
         
     | 
| 
      
 354 
     | 
    
         
            +
             
     | 
| 
      
 355 
     | 
    
         
            +
            #ifndef RAPIDJSON_NO_SIZETYPEDEFINE
         
     | 
| 
      
 356 
     | 
    
         
            +
            /*! \def RAPIDJSON_NO_SIZETYPEDEFINE
         
     | 
| 
      
 357 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 358 
     | 
    
         
            +
                \brief User-provided \c SizeType definition.
         
     | 
| 
      
 359 
     | 
    
         
            +
             
     | 
| 
      
 360 
     | 
    
         
            +
                In order to avoid using 32-bit size types for indexing strings and arrays,
         
     | 
| 
      
 361 
     | 
    
         
            +
                define this preprocessor symbol and provide the type rapidjson::SizeType
         
     | 
| 
      
 362 
     | 
    
         
            +
                before including RapidJSON:
         
     | 
| 
      
 363 
     | 
    
         
            +
                \code
         
     | 
| 
      
 364 
     | 
    
         
            +
                #define RAPIDJSON_NO_SIZETYPEDEFINE
         
     | 
| 
      
 365 
     | 
    
         
            +
                namespace rapidjson { typedef ::std::size_t SizeType; }
         
     | 
| 
      
 366 
     | 
    
         
            +
                #include "rapidjson/..."
         
     | 
| 
      
 367 
     | 
    
         
            +
                \endcode
         
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
      
 369 
     | 
    
         
            +
                \see rapidjson::SizeType
         
     | 
| 
      
 370 
     | 
    
         
            +
            */
         
     | 
| 
      
 371 
     | 
    
         
            +
            #ifdef RAPIDJSON_DOXYGEN_RUNNING
         
     | 
| 
      
 372 
     | 
    
         
            +
            #define RAPIDJSON_NO_SIZETYPEDEFINE
         
     | 
| 
      
 373 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 374 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 375 
     | 
    
         
            +
            //! Size type (for string lengths, array sizes, etc.)
         
     | 
| 
      
 376 
     | 
    
         
            +
            /*! RapidJSON uses 32-bit array/string indices even on 64-bit platforms,
         
     | 
| 
      
 377 
     | 
    
         
            +
                instead of using \c size_t. Users may override the SizeType by defining
         
     | 
| 
      
 378 
     | 
    
         
            +
                \ref RAPIDJSON_NO_SIZETYPEDEFINE.
         
     | 
| 
      
 379 
     | 
    
         
            +
            */
         
     | 
| 
      
 380 
     | 
    
         
            +
            typedef unsigned SizeType;
         
     | 
| 
      
 381 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 382 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 383 
     | 
    
         
            +
             
     | 
| 
      
 384 
     | 
    
         
            +
            // always import std::size_t to rapidjson namespace
         
     | 
| 
      
 385 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 386 
     | 
    
         
            +
            using std::size_t;
         
     | 
| 
      
 387 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 388 
     | 
    
         
            +
             
     | 
| 
      
 389 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 390 
     | 
    
         
            +
            // RAPIDJSON_ASSERT
         
     | 
| 
      
 391 
     | 
    
         
            +
             
     | 
| 
      
 392 
     | 
    
         
            +
            //! Assertion.
         
     | 
| 
      
 393 
     | 
    
         
            +
            /*! \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 394 
     | 
    
         
            +
                By default, rapidjson uses C \c assert() for internal assertions.
         
     | 
| 
      
 395 
     | 
    
         
            +
                User can override it by defining RAPIDJSON_ASSERT(x) macro.
         
     | 
| 
      
 396 
     | 
    
         
            +
             
     | 
| 
      
 397 
     | 
    
         
            +
                \note Parsing errors are handled and can be customized by the
         
     | 
| 
      
 398 
     | 
    
         
            +
                      \ref RAPIDJSON_ERRORS APIs.
         
     | 
| 
      
 399 
     | 
    
         
            +
            */
         
     | 
| 
      
 400 
     | 
    
         
            +
            #ifndef RAPIDJSON_ASSERT
         
     | 
| 
      
 401 
     | 
    
         
            +
            #include <cassert>
         
     | 
| 
      
 402 
     | 
    
         
            +
            #define RAPIDJSON_ASSERT(x) assert(x)
         
     | 
| 
      
 403 
     | 
    
         
            +
            #endif // RAPIDJSON_ASSERT
         
     | 
| 
      
 404 
     | 
    
         
            +
             
     | 
| 
      
 405 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 406 
     | 
    
         
            +
            // RAPIDJSON_STATIC_ASSERT
         
     | 
| 
      
 407 
     | 
    
         
            +
             
     | 
| 
      
 408 
     | 
    
         
            +
            // Adopt from boost
         
     | 
| 
      
 409 
     | 
    
         
            +
            #ifndef RAPIDJSON_STATIC_ASSERT
         
     | 
| 
      
 410 
     | 
    
         
            +
            #ifndef __clang__
         
     | 
| 
      
 411 
     | 
    
         
            +
            //!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN
         
     | 
| 
      
 412 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 413 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 414 
     | 
    
         
            +
            template <bool x> struct STATIC_ASSERTION_FAILURE;
         
     | 
| 
      
 415 
     | 
    
         
            +
            template <> struct STATIC_ASSERTION_FAILURE<true> { enum { value = 1 }; };
         
     | 
| 
      
 416 
     | 
    
         
            +
            template<int x> struct StaticAssertTest {};
         
     | 
| 
      
 417 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 418 
     | 
    
         
            +
             
     | 
| 
      
 419 
     | 
    
         
            +
            #define RAPIDJSON_JOIN(X, Y) RAPIDJSON_DO_JOIN(X, Y)
         
     | 
| 
      
 420 
     | 
    
         
            +
            #define RAPIDJSON_DO_JOIN(X, Y) RAPIDJSON_DO_JOIN2(X, Y)
         
     | 
| 
      
 421 
     | 
    
         
            +
            #define RAPIDJSON_DO_JOIN2(X, Y) X##Y
         
     | 
| 
      
 422 
     | 
    
         
            +
             
     | 
| 
      
 423 
     | 
    
         
            +
            #if defined(__GNUC__)
         
     | 
| 
      
 424 
     | 
    
         
            +
            #define RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE __attribute__((unused))
         
     | 
| 
      
 425 
     | 
    
         
            +
            #else
         
     | 
| 
      
 426 
     | 
    
         
            +
            #define RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE 
         
     | 
| 
      
 427 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 428 
     | 
    
         
            +
            #ifndef __clang__
         
     | 
| 
      
 429 
     | 
    
         
            +
            //!@endcond
         
     | 
| 
      
 430 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 431 
     | 
    
         
            +
             
     | 
| 
      
 432 
     | 
    
         
            +
            /*! \def RAPIDJSON_STATIC_ASSERT
         
     | 
| 
      
 433 
     | 
    
         
            +
                \brief (Internal) macro to check for conditions at compile-time
         
     | 
| 
      
 434 
     | 
    
         
            +
                \param x compile-time condition
         
     | 
| 
      
 435 
     | 
    
         
            +
                \hideinitializer
         
     | 
| 
      
 436 
     | 
    
         
            +
             */
         
     | 
| 
      
 437 
     | 
    
         
            +
            #define RAPIDJSON_STATIC_ASSERT(x) \
         
     | 
| 
      
 438 
     | 
    
         
            +
                typedef ::RAPIDJSON_NAMESPACE::StaticAssertTest< \
         
     | 
| 
      
 439 
     | 
    
         
            +
                  sizeof(::RAPIDJSON_NAMESPACE::STATIC_ASSERTION_FAILURE<bool(x) >)> \
         
     | 
| 
      
 440 
     | 
    
         
            +
                RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
         
     | 
| 
      
 441 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 442 
     | 
    
         
            +
             
     | 
| 
      
 443 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 444 
     | 
    
         
            +
            // RAPIDJSON_LIKELY, RAPIDJSON_UNLIKELY
         
     | 
| 
      
 445 
     | 
    
         
            +
             
     | 
| 
      
 446 
     | 
    
         
            +
            //! Compiler branching hint for expression with high probability to be true.
         
     | 
| 
      
 447 
     | 
    
         
            +
            /*!
         
     | 
| 
      
 448 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 449 
     | 
    
         
            +
                \param x Boolean expression likely to be true.
         
     | 
| 
      
 450 
     | 
    
         
            +
            */
         
     | 
| 
      
 451 
     | 
    
         
            +
            #ifndef RAPIDJSON_LIKELY
         
     | 
| 
      
 452 
     | 
    
         
            +
            #if defined(__GNUC__) || defined(__clang__)
         
     | 
| 
      
 453 
     | 
    
         
            +
            #define RAPIDJSON_LIKELY(x) __builtin_expect(!!(x), 1)
         
     | 
| 
      
 454 
     | 
    
         
            +
            #else
         
     | 
| 
      
 455 
     | 
    
         
            +
            #define RAPIDJSON_LIKELY(x) (x)
         
     | 
| 
      
 456 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 457 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 458 
     | 
    
         
            +
             
     | 
| 
      
 459 
     | 
    
         
            +
            //! Compiler branching hint for expression with low probability to be true.
         
     | 
| 
      
 460 
     | 
    
         
            +
            /*!
         
     | 
| 
      
 461 
     | 
    
         
            +
                \ingroup RAPIDJSON_CONFIG
         
     | 
| 
      
 462 
     | 
    
         
            +
                \param x Boolean expression unlikely to be true.
         
     | 
| 
      
 463 
     | 
    
         
            +
            */
         
     | 
| 
      
 464 
     | 
    
         
            +
            #ifndef RAPIDJSON_UNLIKELY
         
     | 
| 
      
 465 
     | 
    
         
            +
            #if defined(__GNUC__) || defined(__clang__)
         
     | 
| 
      
 466 
     | 
    
         
            +
            #define RAPIDJSON_UNLIKELY(x) __builtin_expect(!!(x), 0)
         
     | 
| 
      
 467 
     | 
    
         
            +
            #else
         
     | 
| 
      
 468 
     | 
    
         
            +
            #define RAPIDJSON_UNLIKELY(x) (x)
         
     | 
| 
      
 469 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 470 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 471 
     | 
    
         
            +
             
     | 
| 
      
 472 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 473 
     | 
    
         
            +
            // Helpers
         
     | 
| 
      
 474 
     | 
    
         
            +
             
     | 
| 
      
 475 
     | 
    
         
            +
            //!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN
         
     | 
| 
      
 476 
     | 
    
         
            +
             
     | 
| 
      
 477 
     | 
    
         
            +
            #define RAPIDJSON_MULTILINEMACRO_BEGIN do {  
         
     | 
| 
      
 478 
     | 
    
         
            +
            #define RAPIDJSON_MULTILINEMACRO_END \
         
     | 
| 
      
 479 
     | 
    
         
            +
            } while((void)0, 0)
         
     | 
| 
      
 480 
     | 
    
         
            +
             
     | 
| 
      
 481 
     | 
    
         
            +
            // adopted from Boost
         
     | 
| 
      
 482 
     | 
    
         
            +
            #define RAPIDJSON_VERSION_CODE(x,y,z) \
         
     | 
| 
      
 483 
     | 
    
         
            +
              (((x)*100000) + ((y)*100) + (z))
         
     | 
| 
      
 484 
     | 
    
         
            +
             
     | 
| 
      
 485 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 486 
     | 
    
         
            +
            // RAPIDJSON_DIAG_PUSH/POP, RAPIDJSON_DIAG_OFF
         
     | 
| 
      
 487 
     | 
    
         
            +
             
     | 
| 
      
 488 
     | 
    
         
            +
            #if defined(__GNUC__)
         
     | 
| 
      
 489 
     | 
    
         
            +
            #define RAPIDJSON_GNUC \
         
     | 
| 
      
 490 
     | 
    
         
            +
                RAPIDJSON_VERSION_CODE(__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__)
         
     | 
| 
      
 491 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 492 
     | 
    
         
            +
             
     | 
| 
      
 493 
     | 
    
         
            +
            #if defined(__clang__) || (defined(RAPIDJSON_GNUC) && RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4,2,0))
         
     | 
| 
      
 494 
     | 
    
         
            +
             
     | 
| 
      
 495 
     | 
    
         
            +
            #define RAPIDJSON_PRAGMA(x) _Pragma(RAPIDJSON_STRINGIFY(x))
         
     | 
| 
      
 496 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_PRAGMA(x) RAPIDJSON_PRAGMA(GCC diagnostic x)
         
     | 
| 
      
 497 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_OFF(x) \
         
     | 
| 
      
 498 
     | 
    
         
            +
                RAPIDJSON_DIAG_PRAGMA(ignored RAPIDJSON_STRINGIFY(RAPIDJSON_JOIN(-W,x)))
         
     | 
| 
      
 499 
     | 
    
         
            +
             
     | 
| 
      
 500 
     | 
    
         
            +
            // push/pop support in Clang and GCC>=4.6
         
     | 
| 
      
 501 
     | 
    
         
            +
            #if defined(__clang__) || (defined(RAPIDJSON_GNUC) && RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4,6,0))
         
     | 
| 
      
 502 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_PUSH RAPIDJSON_DIAG_PRAGMA(push)
         
     | 
| 
      
 503 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_POP  RAPIDJSON_DIAG_PRAGMA(pop)
         
     | 
| 
      
 504 
     | 
    
         
            +
            #else // GCC >= 4.2, < 4.6
         
     | 
| 
      
 505 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_PUSH /* ignored */
         
     | 
| 
      
 506 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_POP /* ignored */
         
     | 
| 
      
 507 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 508 
     | 
    
         
            +
             
     | 
| 
      
 509 
     | 
    
         
            +
            #elif defined(_MSC_VER)
         
     | 
| 
      
 510 
     | 
    
         
            +
             
     | 
| 
      
 511 
     | 
    
         
            +
            // pragma (MSVC specific)
         
     | 
| 
      
 512 
     | 
    
         
            +
            #define RAPIDJSON_PRAGMA(x) __pragma(x)
         
     | 
| 
      
 513 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_PRAGMA(x) RAPIDJSON_PRAGMA(warning(x))
         
     | 
| 
      
 514 
     | 
    
         
            +
             
     | 
| 
      
 515 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_OFF(x) RAPIDJSON_DIAG_PRAGMA(disable: x)
         
     | 
| 
      
 516 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_PUSH RAPIDJSON_DIAG_PRAGMA(push)
         
     | 
| 
      
 517 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_POP  RAPIDJSON_DIAG_PRAGMA(pop)
         
     | 
| 
      
 518 
     | 
    
         
            +
             
     | 
| 
      
 519 
     | 
    
         
            +
            #else
         
     | 
| 
      
 520 
     | 
    
         
            +
             
     | 
| 
      
 521 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_OFF(x) /* ignored */
         
     | 
| 
      
 522 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_PUSH   /* ignored */
         
     | 
| 
      
 523 
     | 
    
         
            +
            #define RAPIDJSON_DIAG_POP    /* ignored */
         
     | 
| 
      
 524 
     | 
    
         
            +
             
     | 
| 
      
 525 
     | 
    
         
            +
            #endif // RAPIDJSON_DIAG_*
         
     | 
| 
      
 526 
     | 
    
         
            +
             
     | 
| 
      
 527 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 528 
     | 
    
         
            +
            // C++11 features
         
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
            #ifndef RAPIDJSON_HAS_CXX11_RVALUE_REFS
         
     | 
| 
      
 531 
     | 
    
         
            +
            #if defined(__clang__)
         
     | 
| 
      
 532 
     | 
    
         
            +
            #if __has_feature(cxx_rvalue_references) && \
         
     | 
| 
      
 533 
     | 
    
         
            +
                (defined(_LIBCPP_VERSION) || defined(__GLIBCXX__) && __GLIBCXX__ >= 20080306)
         
     | 
| 
      
 534 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RVALUE_REFS 1
         
     | 
| 
      
 535 
     | 
    
         
            +
            #else
         
     | 
| 
      
 536 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RVALUE_REFS 0
         
     | 
| 
      
 537 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 538 
     | 
    
         
            +
            #elif (defined(RAPIDJSON_GNUC) && (RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4,3,0)) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || \
         
     | 
| 
      
 539 
     | 
    
         
            +
                  (defined(_MSC_VER) && _MSC_VER >= 1600)
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RVALUE_REFS 1
         
     | 
| 
      
 542 
     | 
    
         
            +
            #else
         
     | 
| 
      
 543 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RVALUE_REFS 0
         
     | 
| 
      
 544 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 545 
     | 
    
         
            +
            #endif // RAPIDJSON_HAS_CXX11_RVALUE_REFS
         
     | 
| 
      
 546 
     | 
    
         
            +
             
     | 
| 
      
 547 
     | 
    
         
            +
            #ifndef RAPIDJSON_HAS_CXX11_NOEXCEPT
         
     | 
| 
      
 548 
     | 
    
         
            +
            #if defined(__clang__)
         
     | 
| 
      
 549 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_NOEXCEPT __has_feature(cxx_noexcept)
         
     | 
| 
      
 550 
     | 
    
         
            +
            #elif (defined(RAPIDJSON_GNUC) && (RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4,6,0)) && defined(__GXX_EXPERIMENTAL_CXX0X__))
         
     | 
| 
      
 551 
     | 
    
         
            +
            //    (defined(_MSC_VER) && _MSC_VER >= ????) // not yet supported
         
     | 
| 
      
 552 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_NOEXCEPT 1
         
     | 
| 
      
 553 
     | 
    
         
            +
            #else
         
     | 
| 
      
 554 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_NOEXCEPT 0
         
     | 
| 
      
 555 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 556 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 557 
     | 
    
         
            +
            #if RAPIDJSON_HAS_CXX11_NOEXCEPT
         
     | 
| 
      
 558 
     | 
    
         
            +
            #define RAPIDJSON_NOEXCEPT noexcept
         
     | 
| 
      
 559 
     | 
    
         
            +
            #else
         
     | 
| 
      
 560 
     | 
    
         
            +
            #define RAPIDJSON_NOEXCEPT /* noexcept */
         
     | 
| 
      
 561 
     | 
    
         
            +
            #endif // RAPIDJSON_HAS_CXX11_NOEXCEPT
         
     | 
| 
      
 562 
     | 
    
         
            +
             
     | 
| 
      
 563 
     | 
    
         
            +
            // no automatic detection, yet
         
     | 
| 
      
 564 
     | 
    
         
            +
            #ifndef RAPIDJSON_HAS_CXX11_TYPETRAITS
         
     | 
| 
      
 565 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_TYPETRAITS 0
         
     | 
| 
      
 566 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 567 
     | 
    
         
            +
             
     | 
| 
      
 568 
     | 
    
         
            +
            #ifndef RAPIDJSON_HAS_CXX11_RANGE_FOR
         
     | 
| 
      
 569 
     | 
    
         
            +
            #if defined(__clang__)
         
     | 
| 
      
 570 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RANGE_FOR __has_feature(cxx_range_for)
         
     | 
| 
      
 571 
     | 
    
         
            +
            #elif (defined(RAPIDJSON_GNUC) && (RAPIDJSON_GNUC >= RAPIDJSON_VERSION_CODE(4,3,0)) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || \
         
     | 
| 
      
 572 
     | 
    
         
            +
                  (defined(_MSC_VER) && _MSC_VER >= 1700)
         
     | 
| 
      
 573 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RANGE_FOR 1
         
     | 
| 
      
 574 
     | 
    
         
            +
            #else
         
     | 
| 
      
 575 
     | 
    
         
            +
            #define RAPIDJSON_HAS_CXX11_RANGE_FOR 0
         
     | 
| 
      
 576 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 577 
     | 
    
         
            +
            #endif // RAPIDJSON_HAS_CXX11_RANGE_FOR
         
     | 
| 
      
 578 
     | 
    
         
            +
             
     | 
| 
      
 579 
     | 
    
         
            +
            //!@endcond
         
     | 
| 
      
 580 
     | 
    
         
            +
             
     | 
| 
      
 581 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 582 
     | 
    
         
            +
            // new/delete
         
     | 
| 
      
 583 
     | 
    
         
            +
             
     | 
| 
      
 584 
     | 
    
         
            +
            #ifndef RAPIDJSON_NEW
         
     | 
| 
      
 585 
     | 
    
         
            +
            ///! customization point for global \c new
         
     | 
| 
      
 586 
     | 
    
         
            +
            #define RAPIDJSON_NEW(x) new x
         
     | 
| 
      
 587 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 588 
     | 
    
         
            +
            #ifndef RAPIDJSON_DELETE
         
     | 
| 
      
 589 
     | 
    
         
            +
            ///! customization point for global \c delete
         
     | 
| 
      
 590 
     | 
    
         
            +
            #define RAPIDJSON_DELETE(x) delete x
         
     | 
| 
      
 591 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 592 
     | 
    
         
            +
             
     | 
| 
      
 593 
     | 
    
         
            +
            ///////////////////////////////////////////////////////////////////////////////
         
     | 
| 
      
 594 
     | 
    
         
            +
            // Type
         
     | 
| 
      
 595 
     | 
    
         
            +
             
     | 
| 
      
 596 
     | 
    
         
            +
            /*! \namespace rapidjson
         
     | 
| 
      
 597 
     | 
    
         
            +
                \brief main RapidJSON namespace
         
     | 
| 
      
 598 
     | 
    
         
            +
                \see RAPIDJSON_NAMESPACE
         
     | 
| 
      
 599 
     | 
    
         
            +
            */
         
     | 
| 
      
 600 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_BEGIN
         
     | 
| 
      
 601 
     | 
    
         
            +
             
     | 
| 
      
 602 
     | 
    
         
            +
            //! Type of JSON value
         
     | 
| 
      
 603 
     | 
    
         
            +
            enum Type {
         
     | 
| 
      
 604 
     | 
    
         
            +
                kNullType = 0,      //!< null
         
     | 
| 
      
 605 
     | 
    
         
            +
                kFalseType = 1,     //!< false
         
     | 
| 
      
 606 
     | 
    
         
            +
                kTrueType = 2,      //!< true
         
     | 
| 
      
 607 
     | 
    
         
            +
                kObjectType = 3,    //!< object
         
     | 
| 
      
 608 
     | 
    
         
            +
                kArrayType = 4,     //!< array 
         
     | 
| 
      
 609 
     | 
    
         
            +
                kStringType = 5,    //!< string
         
     | 
| 
      
 610 
     | 
    
         
            +
                kNumberType = 6     //!< number
         
     | 
| 
      
 611 
     | 
    
         
            +
            };
         
     | 
| 
      
 612 
     | 
    
         
            +
             
     | 
| 
      
 613 
     | 
    
         
            +
            RAPIDJSON_NAMESPACE_END
         
     | 
| 
      
 614 
     | 
    
         
            +
             
     | 
| 
      
 615 
     | 
    
         
            +
            #endif // RAPIDJSON_RAPIDJSON_H_
         
     |