couchbase 3.0.0.alpha.2 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +227 -0
- data/.rubocop_todo.yml +47 -0
- data/.yardopts +1 -0
- data/CONTRIBUTING.md +110 -0
- data/Gemfile +16 -3
- data/README.md +6 -4
- data/Rakefile +6 -2
- data/couchbase.gemspec +46 -13
- data/examples/analytics.rb +236 -0
- data/examples/auth.rb +33 -0
- data/examples/crud.rb +16 -2
- data/examples/managing_analytics_indexes.rb +86 -0
- data/examples/managing_buckets.rb +17 -3
- data/examples/managing_collections.rb +22 -9
- data/examples/managing_query_indexes.rb +39 -19
- data/examples/managing_search_indexes.rb +77 -0
- data/examples/managing_view_indexes.rb +68 -0
- data/examples/query.rb +17 -3
- data/examples/query_with_consistency.rb +30 -20
- data/examples/search.rb +202 -0
- data/examples/search_with_consistency.rb +97 -0
- data/examples/subdocument.rb +42 -30
- data/examples/view.rb +59 -0
- data/ext/.clang-tidy +2 -0
- data/ext/.idea/misc.xml +12 -0
- data/ext/CMakeLists.txt +50 -3
- data/ext/build_config.hxx.in +20 -0
- data/ext/build_version.hxx.in +1 -1
- data/ext/couchbase/bucket.hxx +228 -51
- data/ext/couchbase/cluster.hxx +147 -87
- data/ext/couchbase/cluster_options.hxx +53 -0
- data/ext/couchbase/configuration.hxx +232 -14
- data/ext/couchbase/couchbase.cxx +4250 -1458
- data/ext/couchbase/error_map.hxx +202 -2
- data/ext/couchbase/errors.hxx +8 -2
- data/ext/couchbase/io/dns_client.hxx +217 -0
- data/ext/couchbase/io/dns_codec.hxx +207 -0
- data/ext/couchbase/io/dns_config.hxx +116 -0
- data/ext/couchbase/io/dns_message.hxx +555 -0
- data/ext/couchbase/io/http_command.hxx +91 -0
- data/ext/couchbase/io/http_session.hxx +119 -47
- data/ext/couchbase/io/{session_manager.hxx → http_session_manager.hxx} +34 -34
- data/ext/couchbase/io/mcbp_command.hxx +237 -0
- data/ext/couchbase/io/mcbp_message.hxx +24 -2
- data/ext/couchbase/io/mcbp_parser.hxx +2 -0
- data/ext/couchbase/io/mcbp_session.hxx +455 -173
- data/ext/couchbase/io/retry_action.hxx +30 -0
- data/ext/couchbase/io/retry_context.hxx +39 -0
- data/ext/couchbase/io/retry_orchestrator.hxx +96 -0
- data/ext/couchbase/io/retry_reason.hxx +235 -0
- data/ext/couchbase/io/retry_strategy.hxx +156 -0
- data/ext/couchbase/io/streams.hxx +165 -0
- data/ext/couchbase/mutation_token.hxx +1 -1
- data/ext/couchbase/operations.hxx +33 -1
- data/ext/couchbase/operations/analytics_dataset_create.hxx +117 -0
- data/ext/couchbase/operations/analytics_dataset_drop.hxx +103 -0
- data/ext/couchbase/operations/analytics_dataset_get_all.hxx +107 -0
- data/ext/couchbase/operations/analytics_dataverse_create.hxx +104 -0
- data/ext/couchbase/operations/analytics_dataverse_drop.hxx +104 -0
- data/ext/couchbase/operations/analytics_get_pending_mutations.hxx +91 -0
- data/ext/couchbase/operations/analytics_index_create.hxx +128 -0
- data/ext/couchbase/operations/analytics_index_drop.hxx +110 -0
- data/ext/couchbase/operations/analytics_index_get_all.hxx +106 -0
- data/ext/couchbase/operations/analytics_link_connect.hxx +102 -0
- data/ext/couchbase/operations/analytics_link_disconnect.hxx +101 -0
- data/ext/couchbase/operations/bucket_create.hxx +5 -2
- data/ext/couchbase/operations/bucket_drop.hxx +5 -2
- data/ext/couchbase/operations/bucket_flush.hxx +5 -2
- data/ext/couchbase/operations/bucket_get.hxx +5 -2
- data/ext/couchbase/operations/bucket_get_all.hxx +5 -2
- data/ext/couchbase/operations/bucket_update.hxx +5 -2
- data/ext/couchbase/operations/cluster_developer_preview_enable.hxx +5 -2
- data/ext/couchbase/operations/collection_create.hxx +10 -3
- data/ext/couchbase/operations/collection_drop.hxx +5 -2
- data/ext/couchbase/operations/design_document.hxx +59 -0
- data/ext/couchbase/operations/document_analytics.hxx +288 -0
- data/ext/couchbase/operations/document_decrement.hxx +11 -4
- data/ext/couchbase/operations/document_exists.hxx +5 -1
- data/ext/couchbase/operations/document_get.hxx +8 -1
- data/ext/couchbase/operations/document_get_and_lock.hxx +8 -1
- data/ext/couchbase/operations/document_get_and_touch.hxx +10 -3
- data/ext/couchbase/operations/document_get_projected.hxx +249 -0
- data/ext/couchbase/operations/document_increment.hxx +14 -5
- data/ext/couchbase/operations/document_insert.hxx +10 -3
- data/ext/couchbase/operations/document_lookup_in.hxx +27 -1
- data/ext/couchbase/operations/document_mutate_in.hxx +51 -2
- data/ext/couchbase/operations/document_query.hxx +31 -11
- data/ext/couchbase/operations/document_remove.hxx +8 -1
- data/ext/couchbase/operations/document_replace.hxx +10 -3
- data/ext/couchbase/operations/document_search.hxx +360 -0
- data/ext/couchbase/operations/document_touch.hxx +10 -3
- data/ext/couchbase/operations/document_unlock.hxx +8 -1
- data/ext/couchbase/operations/document_upsert.hxx +10 -3
- data/ext/couchbase/operations/document_view.hxx +228 -0
- data/ext/couchbase/operations/query_index_build_deferred.hxx +4 -3
- data/ext/couchbase/operations/query_index_create.hxx +18 -7
- data/ext/couchbase/operations/query_index_drop.hxx +16 -5
- data/ext/couchbase/operations/query_index_get_all.hxx +15 -5
- data/ext/couchbase/operations/scope_create.hxx +5 -2
- data/ext/couchbase/operations/scope_drop.hxx +5 -2
- data/ext/couchbase/operations/scope_get_all.hxx +6 -2
- data/ext/couchbase/operations/search_index.hxx +79 -0
- data/ext/couchbase/operations/search_index_analyze_document.hxx +92 -0
- data/ext/couchbase/operations/search_index_control_ingest.hxx +80 -0
- data/ext/couchbase/operations/search_index_control_plan_freeze.hxx +80 -0
- data/ext/couchbase/operations/search_index_control_query.hxx +80 -0
- data/ext/couchbase/operations/search_index_drop.hxx +77 -0
- data/ext/couchbase/operations/search_index_get.hxx +80 -0
- data/ext/couchbase/operations/search_index_get_all.hxx +82 -0
- data/ext/couchbase/operations/search_index_get_documents_count.hxx +81 -0
- data/ext/couchbase/operations/search_index_upsert.hxx +106 -0
- data/ext/couchbase/operations/view_index_drop.hxx +67 -0
- data/ext/couchbase/operations/view_index_get.hxx +90 -0
- data/ext/couchbase/operations/view_index_get_all.hxx +125 -0
- data/ext/couchbase/operations/view_index_upsert.hxx +87 -0
- data/ext/couchbase/origin.hxx +178 -0
- data/ext/couchbase/platform/backtrace.c +189 -0
- data/ext/couchbase/platform/backtrace.h +54 -0
- data/ext/couchbase/platform/terminate_handler.cc +122 -0
- data/ext/couchbase/platform/terminate_handler.h +36 -0
- data/ext/couchbase/protocol/client_opcode.hxx +17 -3
- data/ext/couchbase/protocol/client_response.hxx +1 -1
- data/ext/couchbase/protocol/cmd_cluster_map_change_notification.hxx +1 -6
- data/ext/couchbase/protocol/cmd_decrement.hxx +5 -5
- data/ext/couchbase/protocol/cmd_get_and_touch.hxx +5 -5
- data/ext/couchbase/protocol/cmd_get_cluster_config.hxx +7 -7
- data/ext/couchbase/protocol/cmd_get_collection_id.hxx +117 -0
- data/ext/couchbase/protocol/cmd_hello.hxx +10 -0
- data/ext/couchbase/protocol/cmd_increment.hxx +5 -5
- data/ext/couchbase/protocol/cmd_info.hxx +0 -11
- data/ext/couchbase/protocol/cmd_insert.hxx +5 -5
- data/ext/couchbase/protocol/cmd_lookup_in.hxx +1 -0
- data/ext/couchbase/protocol/cmd_mutate_in.hxx +53 -5
- data/ext/couchbase/protocol/cmd_replace.hxx +5 -5
- data/ext/couchbase/protocol/cmd_touch.hxx +1 -1
- data/ext/couchbase/protocol/cmd_upsert.hxx +5 -5
- data/ext/couchbase/protocol/status.hxx +14 -4
- data/ext/couchbase/service_type.hxx +38 -1
- data/ext/couchbase/timeout_defaults.hxx +41 -0
- data/ext/couchbase/utils/connection_string.hxx +370 -0
- data/ext/couchbase/version.hxx +2 -2
- data/ext/extconf.rb +60 -24
- data/ext/test/main.cxx +139 -22
- data/ext/third_party/http_parser/Makefile +160 -0
- data/ext/third_party/json/Makefile +77 -0
- data/lib/couchbase.rb +0 -1
- data/lib/couchbase/analytics_options.rb +177 -0
- data/lib/couchbase/authenticator.rb +14 -0
- data/lib/couchbase/binary_collection.rb +17 -13
- data/lib/couchbase/binary_collection_options.rb +14 -8
- data/lib/couchbase/bucket.rb +55 -3
- data/lib/couchbase/cluster.rb +219 -250
- data/lib/couchbase/collection.rb +67 -33
- data/lib/couchbase/collection_options.rb +95 -15
- data/lib/couchbase/common_options.rb +1 -1
- data/{bin/console → lib/couchbase/datastructures.rb} +4 -7
- data/lib/couchbase/datastructures/couchbase_list.rb +171 -0
- data/lib/couchbase/datastructures/couchbase_map.rb +205 -0
- data/lib/couchbase/datastructures/couchbase_queue.rb +145 -0
- data/lib/couchbase/datastructures/couchbase_set.rb +139 -0
- data/lib/couchbase/errors.rb +76 -66
- data/lib/couchbase/json_transcoder.rb +4 -4
- data/lib/couchbase/management/analytics_index_manager.rb +139 -25
- data/lib/couchbase/management/bucket_manager.rb +19 -5
- data/lib/couchbase/management/collection_manager.rb +16 -7
- data/lib/couchbase/management/query_index_manager.rb +75 -20
- data/lib/couchbase/management/search_index_manager.rb +65 -15
- data/lib/couchbase/management/user_manager.rb +2 -2
- data/lib/couchbase/management/view_index_manager.rb +70 -11
- data/lib/couchbase/mutation_state.rb +13 -0
- data/lib/couchbase/query_options.rb +256 -0
- data/lib/couchbase/scope.rb +61 -8
- data/lib/couchbase/search_options.rb +1512 -0
- data/lib/couchbase/subdoc.rb +87 -23
- data/lib/couchbase/version.rb +2 -2
- data/lib/couchbase/view_options.rb +155 -0
- metadata +88 -783
- data/.github/workflows/tests-6.0.3.yml +0 -49
- data/.github/workflows/tests.yml +0 -47
- data/.gitignore +0 -20
- data/.gitmodules +0 -18
- data/.idea/.gitignore +0 -5
- data/.idea/dictionaries/gem_terms.xml +0 -18
- data/.idea/inspectionProfiles/Project_Default.xml +0 -8
- data/.idea/vcs.xml +0 -12
- data/bin/init-cluster +0 -62
- data/bin/setup +0 -24
- data/ext/couchbase/configuration_monitor.hxx +0 -93
- data/ext/couchbase/operations/command.hxx +0 -77
- data/ext/third_party/asio/asio/src/examples/cpp03/Makefile.am +0 -251
- data/ext/third_party/asio/asio/src/examples/cpp03/allocation/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/allocation/server.cpp +0 -285
- data/ext/third_party/asio/asio/src/examples/cpp03/buffers/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/buffers/reference_counted.cpp +0 -131
- data/ext/third_party/asio/asio/src/examples/cpp03/chat/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/chat/chat_client.cpp +0 -177
- data/ext/third_party/asio/asio/src/examples/cpp03/chat/chat_message.hpp +0 -93
- data/ext/third_party/asio/asio/src/examples/cpp03/chat/chat_server.cpp +0 -249
- data/ext/third_party/asio/asio/src/examples/cpp03/chat/posix_chat_client.cpp +0 -204
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/async_tcp_echo_server.cpp +0 -137
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/async_udp_echo_server.cpp +0 -92
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_tcp_echo_client.cpp +0 -59
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_tcp_echo_server.cpp +0 -79
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_udp_echo_client.cpp +0 -59
- data/ext/third_party/asio/asio/src/examples/cpp03/echo/blocking_udp_echo_server.cpp +0 -53
- data/ext/third_party/asio/asio/src/examples/cpp03/fork/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/fork/daemon.cpp +0 -190
- data/ext/third_party/asio/asio/src/examples/cpp03/fork/process_per_connection.cpp +0 -161
- data/ext/third_party/asio/asio/src/examples/cpp03/http/client/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/http/client/async_client.cpp +0 -204
- data/ext/third_party/asio/asio/src/examples/cpp03/http/client/sync_client.cpp +0 -106
- data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_1K.html +0 -28
- data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_2K.html +0 -49
- data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_4K.html +0 -91
- data/ext/third_party/asio/asio/src/examples/cpp03/http/doc_root/data_8K.html +0 -175
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection.cpp +0 -99
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection.hpp +0 -83
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection_manager.cpp +0 -38
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/connection_manager.hpp +0 -44
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/header.hpp +0 -28
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/main.cpp +0 -44
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/mime_types.cpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/mime_types.hpp +0 -27
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/reply.cpp +0 -256
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/reply.hpp +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request.hpp +0 -34
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_handler.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_handler.hpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_parser.cpp +0 -315
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/request_parser.hpp +0 -95
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/server.cpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server/server.hpp +0 -69
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/connection.cpp +0 -93
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/connection.hpp +0 -75
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/header.hpp +0 -28
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/io_context_pool.cpp +0 -69
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/io_context_pool.hpp +0 -58
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/main.cpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/mime_types.cpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/mime_types.hpp +0 -27
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/reply.cpp +0 -256
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/reply.hpp +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request.hpp +0 -34
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_handler.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_handler.hpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_parser.cpp +0 -315
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/request_parser.hpp +0 -95
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/server.cpp +0 -77
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server2/server.hpp +0 -68
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/connection.cpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/connection.hpp +0 -78
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/header.hpp +0 -28
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/main.cpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/mime_types.cpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/mime_types.hpp +0 -27
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/reply.cpp +0 -256
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/reply.hpp +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request.hpp +0 -34
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_handler.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_handler.hpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_parser.cpp +0 -315
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/request_parser.hpp +0 -95
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/server.cpp +0 -89
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server3/server.hpp +0 -70
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/file_handler.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/file_handler.hpp +0 -44
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/header.hpp +0 -28
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/main.cpp +0 -58
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/mime_types.cpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/mime_types.hpp +0 -27
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/reply.cpp +0 -256
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/reply.hpp +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/request.hpp +0 -46
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/request_parser.cpp +0 -226
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/request_parser.hpp +0 -78
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/server.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp03/http/server4/server.hpp +0 -73
- data/ext/third_party/asio/asio/src/examples/cpp03/icmp/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/icmp/icmp_header.hpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp03/icmp/ipv4_header.hpp +0 -102
- data/ext/third_party/asio/asio/src/examples/cpp03/icmp/ping.cpp +0 -163
- data/ext/third_party/asio/asio/src/examples/cpp03/invocation/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/invocation/prioritised_handlers.cpp +0 -171
- data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/daytime_client.cpp +0 -44
- data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/daytime_server.cpp +0 -51
- data/ext/third_party/asio/asio/src/examples/cpp03/iostreams/http_client.cpp +0 -91
- data/ext/third_party/asio/asio/src/examples/cpp03/local/.gitignore +0 -13
- data/ext/third_party/asio/asio/src/examples/cpp03/local/connect_pair.cpp +0 -141
- data/ext/third_party/asio/asio/src/examples/cpp03/local/iostream_client.cpp +0 -62
- data/ext/third_party/asio/asio/src/examples/cpp03/local/stream_client.cpp +0 -61
- data/ext/third_party/asio/asio/src/examples/cpp03/local/stream_server.cpp +0 -141
- data/ext/third_party/asio/asio/src/examples/cpp03/multicast/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/multicast/receiver.cpp +0 -93
- data/ext/third_party/asio/asio/src/examples/cpp03/multicast/sender.cpp +0 -98
- data/ext/third_party/asio/asio/src/examples/cpp03/nonblocking/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/nonblocking/third_party_lib.cpp +0 -240
- data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/client.cpp +0 -192
- data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/protocol.hpp +0 -156
- data/ext/third_party/asio/asio/src/examples/cpp03/porthopper/server.cpp +0 -187
- data/ext/third_party/asio/asio/src/examples/cpp03/serialization/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/serialization/client.cpp +0 -125
- data/ext/third_party/asio/asio/src/examples/cpp03/serialization/connection.hpp +0 -188
- data/ext/third_party/asio/asio/src/examples/cpp03/serialization/server.cpp +0 -123
- data/ext/third_party/asio/asio/src/examples/cpp03/serialization/stock.hpp +0 -50
- data/ext/third_party/asio/asio/src/examples/cpp03/services/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/services/basic_logger.hpp +0 -83
- data/ext/third_party/asio/asio/src/examples/cpp03/services/daytime_client.cpp +0 -97
- data/ext/third_party/asio/asio/src/examples/cpp03/services/logger.hpp +0 -24
- data/ext/third_party/asio/asio/src/examples/cpp03/services/logger_service.cpp +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/services/logger_service.hpp +0 -145
- data/ext/third_party/asio/asio/src/examples/cpp03/socks4/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/socks4/socks4.hpp +0 -144
- data/ext/third_party/asio/asio/src/examples/cpp03/socks4/sync_client.cpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp03/spawn/.gitignore +0 -12
- data/ext/third_party/asio/asio/src/examples/cpp03/spawn/echo_server.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp03/spawn/parallel_grep.cpp +0 -89
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/README +0 -8
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/ca.pem +0 -49
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/client.cpp +0 -157
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/dh2048.pem +0 -8
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/server.cpp +0 -170
- data/ext/third_party/asio/asio/src/examples/cpp03/ssl/server.pem +0 -71
- data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/async_tcp_client.cpp +0 -311
- data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/blocking_tcp_client.cpp +0 -191
- data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/blocking_token_tcp_client.cpp +0 -200
- data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/blocking_udp_client.cpp +0 -154
- data/ext/third_party/asio/asio/src/examples/cpp03/timeouts/server.cpp +0 -433
- data/ext/third_party/asio/asio/src/examples/cpp03/timers/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/timers/time_t_timer.cpp +0 -106
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime1/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime1/client.cpp +0 -57
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime2/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime2/server.cpp +0 -50
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime3/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime3/server.cpp +0 -119
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime4/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime4/client.cpp +0 -52
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime5/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime5/server.cpp +0 -53
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime6/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime6/server.cpp +0 -89
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime7/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime7/server.cpp +0 -160
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/daytime_dox.txt +0 -500
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/index_dox.txt +0 -48
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer1/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer1/timer.cpp +0 -24
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer2/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer2/timer.cpp +0 -29
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer3/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer3/timer.cpp +0 -43
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer4/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer4/timer.cpp +0 -54
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer5/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer5/timer.cpp +0 -80
- data/ext/third_party/asio/asio/src/examples/cpp03/tutorial/timer_dox.txt +0 -378
- data/ext/third_party/asio/asio/src/examples/cpp03/windows/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp03/windows/transmit_file.cpp +0 -177
- data/ext/third_party/asio/asio/src/examples/cpp11/Makefile.am +0 -161
- data/ext/third_party/asio/asio/src/examples/cpp11/allocation/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/allocation/server.cpp +0 -255
- data/ext/third_party/asio/asio/src/examples/cpp11/buffers/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/buffers/reference_counted.cpp +0 -122
- data/ext/third_party/asio/asio/src/examples/cpp11/chat/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/chat/chat_client.cpp +0 -167
- data/ext/third_party/asio/asio/src/examples/cpp11/chat/chat_message.hpp +0 -91
- data/ext/third_party/asio/asio/src/examples/cpp11/chat/chat_server.cpp +0 -227
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/async_tcp_echo_server.cpp +0 -114
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/async_udp_echo_server.cpp +0 -82
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_tcp_echo_client.cpp +0 -55
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_tcp_echo_server.cpp +0 -74
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_udp_echo_client.cpp +0 -58
- data/ext/third_party/asio/asio/src/examples/cpp11/echo/blocking_udp_echo_server.cpp +0 -52
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/.gitignore +0 -5
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/actor.cpp +0 -286
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/bank_account_1.cpp +0 -54
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/bank_account_2.cpp +0 -54
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/fork_join.cpp +0 -328
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/pipeline.cpp +0 -299
- data/ext/third_party/asio/asio/src/examples/cpp11/executors/priority_scheduler.cpp +0 -174
- data/ext/third_party/asio/asio/src/examples/cpp11/fork/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/fork/daemon.cpp +0 -189
- data/ext/third_party/asio/asio/src/examples/cpp11/fork/process_per_connection.cpp +0 -162
- data/ext/third_party/asio/asio/src/examples/cpp11/futures/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/futures/daytime_client.cpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp11/handler_tracking/custom_tracking.hpp +0 -201
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection.cpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection.hpp +0 -79
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection_manager.cpp +0 -40
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/connection_manager.hpp +0 -48
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/header.hpp +0 -28
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/main.cpp +0 -43
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/mime_types.cpp +0 -45
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/mime_types.hpp +0 -27
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/reply.cpp +0 -255
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/reply.hpp +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request.hpp +0 -34
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_handler.cpp +0 -121
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_handler.hpp +0 -47
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_parser.cpp +0 -315
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/request_parser.hpp +0 -96
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/server.cpp +0 -94
- data/ext/third_party/asio/asio/src/examples/cpp11/http/server/server.hpp +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp11/invocation/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/invocation/prioritised_handlers.cpp +0 -202
- data/ext/third_party/asio/asio/src/examples/cpp11/iostreams/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/iostreams/http_client.cpp +0 -91
- data/ext/third_party/asio/asio/src/examples/cpp11/local/.gitignore +0 -13
- data/ext/third_party/asio/asio/src/examples/cpp11/local/connect_pair.cpp +0 -129
- data/ext/third_party/asio/asio/src/examples/cpp11/local/iostream_client.cpp +0 -61
- data/ext/third_party/asio/asio/src/examples/cpp11/local/stream_client.cpp +0 -60
- data/ext/third_party/asio/asio/src/examples/cpp11/local/stream_server.cpp +0 -121
- data/ext/third_party/asio/asio/src/examples/cpp11/multicast/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/multicast/receiver.cpp +0 -88
- data/ext/third_party/asio/asio/src/examples/cpp11/multicast/sender.cpp +0 -91
- data/ext/third_party/asio/asio/src/examples/cpp11/nonblocking/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/nonblocking/third_party_lib.cpp +0 -212
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_1.cpp +0 -113
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_2.cpp +0 -131
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_3.cpp +0 -192
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_4.cpp +0 -207
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_5.cpp +0 -243
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_6.cpp +0 -302
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_7.cpp +0 -222
- data/ext/third_party/asio/asio/src/examples/cpp11/operations/composed_8.cpp +0 -217
- data/ext/third_party/asio/asio/src/examples/cpp11/socks4/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/socks4/socks4.hpp +0 -143
- data/ext/third_party/asio/asio/src/examples/cpp11/socks4/sync_client.cpp +0 -93
- data/ext/third_party/asio/asio/src/examples/cpp11/spawn/.gitignore +0 -12
- data/ext/third_party/asio/asio/src/examples/cpp11/spawn/echo_server.cpp +0 -111
- data/ext/third_party/asio/asio/src/examples/cpp11/spawn/parallel_grep.cpp +0 -84
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/README +0 -8
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/ca.pem +0 -49
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/client.cpp +0 -165
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/dh2048.pem +0 -8
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/server.cpp +0 -143
- data/ext/third_party/asio/asio/src/examples/cpp11/ssl/server.pem +0 -71
- data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/async_tcp_client.cpp +0 -311
- data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/blocking_tcp_client.cpp +0 -192
- data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/blocking_token_tcp_client.cpp +0 -197
- data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/blocking_udp_client.cpp +0 -155
- data/ext/third_party/asio/asio/src/examples/cpp11/timeouts/server.cpp +0 -433
- data/ext/third_party/asio/asio/src/examples/cpp11/timers/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp11/timers/time_t_timer.cpp +0 -106
- data/ext/third_party/asio/asio/src/examples/cpp14/Makefile.am +0 -64
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/async_tcp_echo_server.cpp +0 -117
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/async_udp_echo_server.cpp +0 -83
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_tcp_echo_client.cpp +0 -55
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_tcp_echo_server.cpp +0 -77
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_udp_echo_client.cpp +0 -59
- data/ext/third_party/asio/asio/src/examples/cpp14/echo/blocking_udp_echo_server.cpp +0 -53
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/.gitignore +0 -6
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/actor.cpp +0 -281
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/async_1.cpp +0 -47
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/async_2.cpp +0 -68
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/bank_account_1.cpp +0 -54
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/bank_account_2.cpp +0 -53
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/fork_join.cpp +0 -327
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/pipeline.cpp +0 -294
- data/ext/third_party/asio/asio/src/examples/cpp14/executors/priority_scheduler.cpp +0 -173
- data/ext/third_party/asio/asio/src/examples/cpp14/iostreams/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/examples/cpp14/iostreams/http_client.cpp +0 -91
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/.gitignore +0 -10
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_1.cpp +0 -113
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_2.cpp +0 -131
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_3.cpp +0 -186
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_4.cpp +0 -201
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_5.cpp +0 -238
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_6.cpp +0 -298
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_7.cpp +0 -219
- data/ext/third_party/asio/asio/src/examples/cpp14/operations/composed_8.cpp +0 -212
- data/ext/third_party/asio/asio/src/examples/cpp17/Makefile.am +0 -8
- data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/chat_server.cpp +0 -225
- data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/echo_server.cpp +0 -76
- data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/echo_server_with_default.cpp +0 -78
- data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/range_based_for.cpp +0 -107
- data/ext/third_party/asio/asio/src/examples/cpp17/coroutines_ts/refactored_echo_server.cpp +0 -85
- data/ext/third_party/asio/asio/src/tests/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/tests/Makefile.am +0 -432
- data/ext/third_party/asio/asio/src/tests/latency/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/tests/latency/allocator.hpp +0 -52
- data/ext/third_party/asio/asio/src/tests/latency/high_res_clock.hpp +0 -53
- data/ext/third_party/asio/asio/src/tests/latency/tcp_client.cpp +0 -124
- data/ext/third_party/asio/asio/src/tests/latency/tcp_server.cpp +0 -114
- data/ext/third_party/asio/asio/src/tests/latency/udp_client.cpp +0 -104
- data/ext/third_party/asio/asio/src/tests/latency/udp_server.cpp +0 -125
- data/ext/third_party/asio/asio/src/tests/performance/.gitignore +0 -11
- data/ext/third_party/asio/asio/src/tests/performance/client.cpp +0 -286
- data/ext/third_party/asio/asio/src/tests/performance/handler_allocator.hpp +0 -112
- data/ext/third_party/asio/asio/src/tests/performance/server.cpp +0 -233
- data/ext/third_party/asio/asio/src/tests/unit/.gitignore +0 -75
- data/ext/third_party/asio/asio/src/tests/unit/archetypes/async_ops.hpp +0 -415
- data/ext/third_party/asio/asio/src/tests/unit/archetypes/async_result.hpp +0 -94
- data/ext/third_party/asio/asio/src/tests/unit/archetypes/gettable_socket_option.hpp +0 -54
- data/ext/third_party/asio/asio/src/tests/unit/archetypes/io_control_command.hpp +0 -32
- data/ext/third_party/asio/asio/src/tests/unit/archetypes/settable_socket_option.hpp +0 -49
- data/ext/third_party/asio/asio/src/tests/unit/associated_allocator.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/associated_executor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/async_result.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/awaitable.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_datagram_socket.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_deadline_timer.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_raw_socket.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_seq_packet_socket.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_serial_port.cpp +0 -26
- data/ext/third_party/asio/asio/src/tests/unit/basic_signal_set.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_socket.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_socket_acceptor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_stream_socket.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_streambuf.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/basic_waitable_timer.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/bind_executor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/buffer.cpp +0 -830
- data/ext/third_party/asio/asio/src/tests/unit/buffered_read_stream.cpp +0 -338
- data/ext/third_party/asio/asio/src/tests/unit/buffered_stream.cpp +0 -364
- data/ext/third_party/asio/asio/src/tests/unit/buffered_write_stream.cpp +0 -353
- data/ext/third_party/asio/asio/src/tests/unit/buffers_iterator.cpp +0 -292
- data/ext/third_party/asio/asio/src/tests/unit/co_spawn.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/completion_condition.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/compose.cpp +0 -185
- data/ext/third_party/asio/asio/src/tests/unit/connect.cpp +0 -1190
- data/ext/third_party/asio/asio/src/tests/unit/coroutine.cpp +0 -112
- data/ext/third_party/asio/asio/src/tests/unit/deadline_timer.cpp +0 -392
- data/ext/third_party/asio/asio/src/tests/unit/defer.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/detached.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/dispatch.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/error.cpp +0 -89
- data/ext/third_party/asio/asio/src/tests/unit/execution_context.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/executor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/executor_work_guard.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/generic/.gitignore +0 -14
- data/ext/third_party/asio/asio/src/tests/unit/generic/basic_endpoint.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/generic/datagram_protocol.cpp +0 -263
- data/ext/third_party/asio/asio/src/tests/unit/generic/raw_protocol.cpp +0 -263
- data/ext/third_party/asio/asio/src/tests/unit/generic/seq_packet_protocol.cpp +0 -205
- data/ext/third_party/asio/asio/src/tests/unit/generic/stream_protocol.cpp +0 -248
- data/ext/third_party/asio/asio/src/tests/unit/high_resolution_timer.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/io_context.cpp +0 -362
- data/ext/third_party/asio/asio/src/tests/unit/io_context_strand.cpp +0 -325
- data/ext/third_party/asio/asio/src/tests/unit/ip/.gitignore +0 -27
- data/ext/third_party/asio/asio/src/tests/unit/ip/address.cpp +0 -144
- data/ext/third_party/asio/asio/src/tests/unit/ip/basic_endpoint.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver_entry.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver_iterator.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ip/basic_resolver_query.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ip/host_name.cpp +0 -55
- data/ext/third_party/asio/asio/src/tests/unit/ip/icmp.cpp +0 -577
- data/ext/third_party/asio/asio/src/tests/unit/ip/multicast.cpp +0 -363
- data/ext/third_party/asio/asio/src/tests/unit/ip/network_v4.cpp +0 -314
- data/ext/third_party/asio/asio/src/tests/unit/ip/network_v6.cpp +0 -238
- data/ext/third_party/asio/asio/src/tests/unit/ip/resolver_query_base.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ip/tcp.cpp +0 -1346
- data/ext/third_party/asio/asio/src/tests/unit/ip/udp.cpp +0 -673
- data/ext/third_party/asio/asio/src/tests/unit/ip/unicast.cpp +0 -171
- data/ext/third_party/asio/asio/src/tests/unit/ip/v6_only.cpp +0 -135
- data/ext/third_party/asio/asio/src/tests/unit/is_read_buffered.cpp +0 -129
- data/ext/third_party/asio/asio/src/tests/unit/is_write_buffered.cpp +0 -129
- data/ext/third_party/asio/asio/src/tests/unit/local/.gitignore +0 -13
- data/ext/third_party/asio/asio/src/tests/unit/local/basic_endpoint.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/local/connect_pair.cpp +0 -76
- data/ext/third_party/asio/asio/src/tests/unit/local/datagram_protocol.cpp +0 -242
- data/ext/third_party/asio/asio/src/tests/unit/local/stream_protocol.cpp +0 -219
- data/ext/third_party/asio/asio/src/tests/unit/packaged_task.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/placeholders.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/posix/.gitignore +0 -14
- data/ext/third_party/asio/asio/src/tests/unit/posix/basic_descriptor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/posix/basic_stream_descriptor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/posix/descriptor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/posix/descriptor_base.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/posix/stream_descriptor.cpp +0 -183
- data/ext/third_party/asio/asio/src/tests/unit/post.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/read.cpp +0 -4997
- data/ext/third_party/asio/asio/src/tests/unit/read_at.cpp +0 -7502
- data/ext/third_party/asio/asio/src/tests/unit/read_until.cpp +0 -1658
- data/ext/third_party/asio/asio/src/tests/unit/redirect_error.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/serial_port.cpp +0 -173
- data/ext/third_party/asio/asio/src/tests/unit/serial_port_base.cpp +0 -99
- data/ext/third_party/asio/asio/src/tests/unit/signal_set.cpp +0 -95
- data/ext/third_party/asio/asio/src/tests/unit/socket_base.cpp +0 -650
- data/ext/third_party/asio/asio/src/tests/unit/ssl/.gitignore +0 -15
- data/ext/third_party/asio/asio/src/tests/unit/ssl/context.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ssl/context_base.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ssl/error.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ssl/host_name_verification.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ssl/rfc2818_verification.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ssl/stream.cpp +0 -191
- data/ext/third_party/asio/asio/src/tests/unit/ssl/stream_base.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/steady_timer.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/strand.cpp +0 -263
- data/ext/third_party/asio/asio/src/tests/unit/streambuf.cpp +0 -62
- data/ext/third_party/asio/asio/src/tests/unit/system_context.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/system_executor.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/system_timer.cpp +0 -399
- data/ext/third_party/asio/asio/src/tests/unit/this_coro.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/thread.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/time_traits.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/ts/.gitignore +0 -17
- data/ext/third_party/asio/asio/src/tests/unit/ts/buffer.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/ts/executor.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/ts/internet.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/ts/io_context.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/ts/net.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/ts/netfwd.cpp +0 -33
- data/ext/third_party/asio/asio/src/tests/unit/ts/socket.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/ts/timer.cpp +0 -30
- data/ext/third_party/asio/asio/src/tests/unit/unit_test.hpp +0 -175
- data/ext/third_party/asio/asio/src/tests/unit/use_awaitable.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/use_future.cpp +0 -670
- data/ext/third_party/asio/asio/src/tests/unit/uses_executor.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/wait_traits.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/windows/.gitignore +0 -18
- data/ext/third_party/asio/asio/src/tests/unit/windows/basic_object_handle.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/windows/basic_overlapped_handle.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/windows/basic_random_access_handle.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/windows/basic_stream_handle.cpp +0 -25
- data/ext/third_party/asio/asio/src/tests/unit/windows/object_handle.cpp +0 -130
- data/ext/third_party/asio/asio/src/tests/unit/windows/overlapped_handle.cpp +0 -26
- data/ext/third_party/asio/asio/src/tests/unit/windows/overlapped_ptr.cpp +0 -107
- data/ext/third_party/asio/asio/src/tests/unit/windows/random_access_handle.cpp +0 -155
- data/ext/third_party/asio/asio/src/tests/unit/windows/stream_handle.cpp +0 -148
- data/ext/third_party/asio/asio/src/tests/unit/write.cpp +0 -4904
- data/ext/third_party/asio/asio/src/tests/unit/write_at.cpp +0 -7563
- data/ext/third_party/asio/asio/src/tools/handlerviz.pl +0 -299
- data/ext/third_party/gsl/tests/CMakeLists.txt +0 -267
- data/ext/third_party/gsl/tests/CMakeLists.txt.in +0 -14
- data/ext/third_party/gsl/tests/algorithm_tests.cpp +0 -227
- data/ext/third_party/gsl/tests/assertion_tests.cpp +0 -61
- data/ext/third_party/gsl/tests/at_tests.cpp +0 -135
- data/ext/third_party/gsl/tests/bounds_tests.cpp +0 -102
- data/ext/third_party/gsl/tests/byte_tests.cpp +0 -129
- data/ext/third_party/gsl/tests/multi_span_tests.cpp +0 -1866
- data/ext/third_party/gsl/tests/no_exception_ensure_tests.cpp +0 -48
- data/ext/third_party/gsl/tests/notnull_tests.cpp +0 -535
- data/ext/third_party/gsl/tests/owner_tests.cpp +0 -43
- data/ext/third_party/gsl/tests/span_compatibility_tests.cpp +0 -1021
- data/ext/third_party/gsl/tests/span_ext_tests.cpp +0 -360
- data/ext/third_party/gsl/tests/span_tests.cpp +0 -1244
- data/ext/third_party/gsl/tests/strict_notnull_tests.cpp +0 -190
- data/ext/third_party/gsl/tests/strided_span_tests.cpp +0 -790
- data/ext/third_party/gsl/tests/string_span_tests.cpp +0 -1217
- data/ext/third_party/gsl/tests/utils_tests.cpp +0 -129
- data/ext/third_party/http_parser/contrib/parsertrace.c +0 -157
- data/ext/third_party/http_parser/contrib/url_parser.c +0 -47
- data/ext/third_party/http_parser/fuzzers/fuzz_parser.c +0 -26
- data/ext/third_party/http_parser/fuzzers/fuzz_url.c +0 -14
- data/ext/third_party/json/contrib/nlohmann.cpp +0 -48
- data/ext/third_party/json/contrib/nlohmann/from_value.hpp +0 -62
- data/ext/third_party/json/contrib/nlohmann/json.hpp +0 -18928
- data/ext/third_party/json/contrib/nlohmann/to_value.hpp +0 -109
- data/ext/third_party/json/doc/Advanced-Use-Cases.md +0 -83
- data/ext/third_party/json/doc/Batteries-Included.md +0 -212
- data/ext/third_party/json/doc/Binding-Traits.md +0 -319
- data/ext/third_party/json/doc/Changelog.md +0 -31
- data/ext/third_party/json/doc/Common-Use-Cases.md +0 -148
- data/ext/third_party/json/doc/Design-Decisions.md +0 -36
- data/ext/third_party/json/doc/Events-Interface.md +0 -140
- data/ext/third_party/json/doc/Getting-Started.md +0 -19
- data/ext/third_party/json/doc/Instance-Sharing.md +0 -163
- data/ext/third_party/json/doc/Interoperability.md +0 -75
- data/ext/third_party/json/doc/Overview.md +0 -24
- data/ext/third_party/json/doc/Overview.png +0 -0
- data/ext/third_party/json/doc/Parser-Interface.md +0 -84
- data/ext/third_party/json/doc/README.md +0 -78
- data/ext/third_party/json/doc/Scratchpad.md +0 -25
- data/ext/third_party/json/doc/Type-Traits.md +0 -364
- data/ext/third_party/json/doc/Types.png +0 -0
- data/ext/third_party/json/doc/Value-Class.md +0 -525
- data/ext/third_party/json/src/example/json/CMakeLists.txt +0 -67
- data/ext/third_party/json/src/example/json/cbor_to_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/cbor_to_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/cbor_to_msgpack.cpp +0 -18
- data/ext/third_party/json/src/example/json/cbor_to_pretty_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/cbor_to_pretty_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/cbor_to_ubjson.cpp +0 -18
- data/ext/third_party/json/src/example/json/jaxn_to_cbor.cpp +0 -18
- data/ext/third_party/json/src/example/json/jaxn_to_cplusplus.cpp +0 -249
- data/ext/third_party/json/src/example/json/jaxn_to_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/jaxn_to_msgpack.cpp +0 -18
- data/ext/third_party/json/src/example/json/jaxn_to_pretty_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/jaxn_to_ubjson.cpp +0 -18
- data/ext/third_party/json/src/example/json/json_to_cbor.cpp +0 -18
- data/ext/third_party/json/src/example/json/json_to_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/json_to_msgpack.cpp +0 -18
- data/ext/third_party/json/src/example/json/json_to_pretty_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/json_to_ubjson.cpp +0 -18
- data/ext/third_party/json/src/example/json/msgpack_to_cbor.cpp +0 -18
- data/ext/third_party/json/src/example/json/msgpack_to_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/msgpack_to_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/msgpack_to_pretty_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/msgpack_to_pretty_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/msgpack_to_ubjson.cpp +0 -18
- data/ext/third_party/json/src/example/json/printf_doubles.cpp +0 -51
- data/ext/third_party/json/src/example/json/ubjson_to_cbor.cpp +0 -18
- data/ext/third_party/json/src/example/json/ubjson_to_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/ubjson_to_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/ubjson_to_msgpack.cpp +0 -18
- data/ext/third_party/json/src/example/json/ubjson_to_pretty_jaxn.cpp +0 -18
- data/ext/third_party/json/src/example/json/ubjson_to_pretty_json.cpp +0 -18
- data/ext/third_party/json/src/example/json/validate_event_order.cpp +0 -27
- data/ext/third_party/json/src/example/json/validate_integer.cpp +0 -56
- data/ext/third_party/json/src/perf/json/bench_mark.hpp +0 -43
- data/ext/third_party/json/src/perf/json/benchmark.cpp +0 -34
- data/ext/third_party/json/src/perf/json/parse_file.cpp +0 -17
- data/ext/third_party/json/src/perf/json/pretty_print_file.cpp +0 -19
- data/ext/third_party/json/src/perf/json/print_double.cpp +0 -34
- data/ext/third_party/json/src/perf/json/print_file.cpp +0 -19
- data/ext/third_party/json/src/perf/json/sizes.cpp +0 -24
- data/ext/third_party/json/src/perf/json/syntax_only.cpp +0 -27
- data/ext/third_party/json/src/test/json/CMakeLists.txt +0 -97
- data/ext/third_party/json/src/test/json/big_list_of_naughty_strings.cpp +0 -43
- data/ext/third_party/json/src/test/json/binding_array.cpp +0 -549
- data/ext/third_party/json/src/test/json/binding_factory.cpp +0 -265
- data/ext/third_party/json/src/test/json/binding_object.cpp +0 -208
- data/ext/third_party/json/src/test/json/binding_versions.cpp +0 -95
- data/ext/third_party/json/src/test/json/cbor.cpp +0 -149
- data/ext/third_party/json/src/test/json/cbor_parts_parser.cpp +0 -36
- data/ext/third_party/json/src/test/json/contrib_diff.cpp +0 -43
- data/ext/third_party/json/src/test/json/contrib_get.cpp +0 -42
- data/ext/third_party/json/src/test/json/contrib_patch_add.cpp +0 -75
- data/ext/third_party/json/src/test/json/contrib_patch_copy.cpp +0 -113
- data/ext/third_party/json/src/test/json/contrib_patch_move.cpp +0 -97
- data/ext/third_party/json/src/test/json/contrib_patch_remove.cpp +0 -85
- data/ext/third_party/json/src/test/json/contrib_patch_replace.cpp +0 -79
- data/ext/third_party/json/src/test/json/contrib_patch_test.cpp +0 -69
- data/ext/third_party/json/src/test/json/contrib_position.cpp +0 -48
- data/ext/third_party/json/src/test/json/contrib_reference.cpp +0 -44
- data/ext/third_party/json/src/test/json/contrib_schema.cpp +0 -132
- data/ext/third_party/json/src/test/json/contrib_traits.cpp +0 -258
- data/ext/third_party/json/src/test/json/double.cpp +0 -182
- data/ext/third_party/json/src/test/json/enable_implicit_constructor.cpp +0 -54
- data/ext/third_party/json/src/test/json/escape.cpp +0 -42
- data/ext/third_party/json/src/test/json/events_binary_to.cpp +0 -56
- data/ext/third_party/json/src/test/json/events_compare.cpp +0 -433
- data/ext/third_party/json/src/test/json/events_debug.cpp +0 -24
- data/ext/third_party/json/src/test/json/events_hash.cpp +0 -65
- data/ext/third_party/json/src/test/json/events_to_stream.cpp +0 -28
- data/ext/third_party/json/src/test/json/events_to_string.cpp +0 -25
- data/ext/third_party/json/src/test/json/include_json.cpp +0 -14
- data/ext/third_party/json/src/test/json/integer.cpp +0 -118
- data/ext/third_party/json/src/test/json/jaxn_ostream.cpp +0 -76
- data/ext/third_party/json/src/test/json/jaxn_parse.cpp +0 -239
- data/ext/third_party/json/src/test/json/jaxn_parts_parser.cpp +0 -220
- data/ext/third_party/json/src/test/json/json_ostream.cpp +0 -102
- data/ext/third_party/json/src/test/json/json_parse.cpp +0 -153
- data/ext/third_party/json/src/test/json/json_parts_parser.cpp +0 -124
- data/ext/third_party/json/src/test/json/json_pointer.cpp +0 -176
- data/ext/third_party/json/src/test/json/key_camel_case_to_snake_case.cpp +0 -38
- data/ext/third_party/json/src/test/json/key_snake_case_to_camel_case.cpp +0 -33
- data/ext/third_party/json/src/test/json/literal.cpp +0 -18
- data/ext/third_party/json/src/test/json/main.hpp +0 -20
- data/ext/third_party/json/src/test/json/make_events.hpp +0 -362
- data/ext/third_party/json/src/test/json/msgpack.cpp +0 -136
- data/ext/third_party/json/src/test/json/object_construction.cpp +0 -167
- data/ext/third_party/json/src/test/json/opaque_pointer.cpp +0 -192
- data/ext/third_party/json/src/test/json/operators.cpp +0 -494
- data/ext/third_party/json/src/test/json/optional.cpp +0 -79
- data/ext/third_party/json/src/test/json/public_base.cpp +0 -142
- data/ext/third_party/json/src/test/json/self_contained.cpp +0 -106
- data/ext/third_party/json/src/test/json/sha256.cpp +0 -38
- data/ext/third_party/json/src/test/json/string_view.cpp +0 -70
- data/ext/third_party/json/src/test/json/temporary_parsing.cpp +0 -339
- data/ext/third_party/json/src/test/json/test.hpp +0 -74
- data/ext/third_party/json/src/test/json/test_events.hpp +0 -250
- data/ext/third_party/json/src/test/json/test_types.hpp +0 -557
- data/ext/third_party/json/src/test/json/test_unhex.hpp +0 -42
- data/ext/third_party/json/src/test/json/type.cpp +0 -35
- data/ext/third_party/json/src/test/json/ubjson.cpp +0 -119
- data/ext/third_party/json/src/test/json/uri_fragment.cpp +0 -52
- data/ext/third_party/json/src/test/json/validate_event_interfaces.cpp +0 -177
- data/ext/third_party/json/src/test/json/validate_utf8.cpp +0 -37
- data/ext/third_party/json/src/test/json/value_access.cpp +0 -144
- data/ext/third_party/json/src/test/json/value_basics.cpp +0 -241
- data/ext/third_party/json/src/test/json/value_create.cpp +0 -372
- data/ext/third_party/json/src/test/json/value_ptr.cpp +0 -33
- data/ext/third_party/json/src/test/json/value_subscript.cpp +0 -89
- data/ext/third_party/json/src/test/json/with_arguments.cpp +0 -98
- data/ext/third_party/json/tests/blns.json +0 -496
- data/ext/third_party/json/tests/canada.json +0 -9
- data/ext/third_party/json/tests/citm_catalog.json +0 -50469
- data/ext/third_party/json/tests/draft4/additionalItems.json +0 -82
- data/ext/third_party/json/tests/draft4/additionalProperties.json +0 -88
- data/ext/third_party/json/tests/draft4/allOf.json +0 -112
- data/ext/third_party/json/tests/draft4/anyOf.json +0 -68
- data/ext/third_party/json/tests/draft4/default.json +0 -49
- data/ext/third_party/json/tests/draft4/definitions.json +0 -32
- data/ext/third_party/json/tests/draft4/dependencies.json +0 -113
- data/ext/third_party/json/tests/draft4/enum.json +0 -72
- data/ext/third_party/json/tests/draft4/items.json +0 -46
- data/ext/third_party/json/tests/draft4/maxItems.json +0 -28
- data/ext/third_party/json/tests/draft4/maxLength.json +0 -33
- data/ext/third_party/json/tests/draft4/maxProperties.json +0 -28
- data/ext/third_party/json/tests/draft4/maximum.json +0 -42
- data/ext/third_party/json/tests/draft4/minItems.json +0 -28
- data/ext/third_party/json/tests/draft4/minLength.json +0 -33
- data/ext/third_party/json/tests/draft4/minProperties.json +0 -28
- data/ext/third_party/json/tests/draft4/minimum.json +0 -42
- data/ext/third_party/json/tests/draft4/multipleOf.json +0 -60
- data/ext/third_party/json/tests/draft4/not.json +0 -96
- data/ext/third_party/json/tests/draft4/oneOf.json +0 -68
- data/ext/third_party/json/tests/draft4/optional/bignum.json +0 -107
- data/ext/third_party/json/tests/draft4/optional/format.json +0 -148
- data/ext/third_party/json/tests/draft4/optional/zeroTerminatedFloats.json +0 -15
- data/ext/third_party/json/tests/draft4/pattern.json +0 -34
- data/ext/third_party/json/tests/draft4/patternProperties.json +0 -110
- data/ext/third_party/json/tests/draft4/properties.json +0 -92
- data/ext/third_party/json/tests/draft4/ref.json +0 -179
- data/ext/third_party/json/tests/draft4/refRemote.json +0 -74
- data/ext/third_party/json/tests/draft4/required.json +0 -44
- data/ext/third_party/json/tests/draft4/type.json +0 -345
- data/ext/third_party/json/tests/draft4/uniqueItems.json +0 -79
- data/ext/third_party/json/tests/taocpp/binary.jaxn +0 -4
- data/ext/third_party/json/tests/taocpp/dateTime.json +0 -108
- data/ext/third_party/json/tests/taocpp/make_events.cbor +0 -0
- data/ext/third_party/json/tests/taocpp/number.json +0 -682
- data/ext/third_party/json/tests/taocpp/position.json +0 -8
- data/ext/third_party/json/tests/taocpp/schema.json +0 -378
- data/ext/third_party/json/tests/twitter.json +0 -15482
- data/ext/third_party/snappy/testdata/alice29.txt +0 -3609
- data/ext/third_party/snappy/testdata/asyoulik.txt +0 -4122
- data/ext/third_party/snappy/testdata/baddata1.snappy +0 -0
- data/ext/third_party/snappy/testdata/baddata2.snappy +0 -0
- data/ext/third_party/snappy/testdata/baddata3.snappy +0 -0
- data/ext/third_party/snappy/testdata/fireworks.jpeg +0 -0
- data/ext/third_party/snappy/testdata/geo.protodata +0 -0
- data/ext/third_party/snappy/testdata/html +0 -1
- data/ext/third_party/snappy/testdata/html_x_4 +0 -1
- data/ext/third_party/snappy/testdata/kppkn.gtb +0 -0
- data/ext/third_party/snappy/testdata/lcet10.txt +0 -7519
- data/ext/third_party/snappy/testdata/paper-100k.pdf +2 -600
- data/ext/third_party/snappy/testdata/plrabn12.txt +0 -10699
- data/ext/third_party/snappy/testdata/urls.10K +0 -10000
- data/ext/third_party/spdlog/bench/CMakeLists.txt +0 -25
- data/ext/third_party/spdlog/bench/async_bench.cpp +0 -179
- data/ext/third_party/spdlog/bench/bench.cpp +0 -238
- data/ext/third_party/spdlog/bench/formatter-bench.cpp +0 -80
- data/ext/third_party/spdlog/bench/latency.cpp +0 -166
- data/ext/third_party/spdlog/bench/utils.h +0 -34
- data/ext/third_party/spdlog/example/CMakeLists.txt +0 -23
- data/ext/third_party/spdlog/example/example.cpp +0 -282
- data/ext/third_party/spdlog/logos/jetbrains-variant-4.svg +0 -43
- data/ext/third_party/spdlog/scripts/extract_version.py +0 -17
- data/ext/third_party/spdlog/scripts/format.sh +0 -16
- data/ext/third_party/spdlog/tests/CMakeLists.txt +0 -70
- data/ext/third_party/spdlog/tests/catch.hpp +0 -15372
- data/ext/third_party/spdlog/tests/catch.license +0 -23
- data/ext/third_party/spdlog/tests/includes.h +0 -26
- data/ext/third_party/spdlog/tests/main.cpp +0 -2
- data/ext/third_party/spdlog/tests/test_async.cpp +0 -188
- data/ext/third_party/spdlog/tests/test_backtrace.cpp +0 -65
- data/ext/third_party/spdlog/tests/test_cfg.cpp +0 -93
- data/ext/third_party/spdlog/tests/test_create_dir.cpp +0 -80
- data/ext/third_party/spdlog/tests/test_daily_logger.cpp +0 -149
- data/ext/third_party/spdlog/tests/test_dup_filter.cpp +0 -88
- data/ext/third_party/spdlog/tests/test_errors.cpp +0 -118
- data/ext/third_party/spdlog/tests/test_eventlog.cpp +0 -71
- data/ext/third_party/spdlog/tests/test_file_helper.cpp +0 -102
- data/ext/third_party/spdlog/tests/test_file_logging.cpp +0 -98
- data/ext/third_party/spdlog/tests/test_fmt_helper.cpp +0 -86
- data/ext/third_party/spdlog/tests/test_macros.cpp +0 -60
- data/ext/third_party/spdlog/tests/test_misc.cpp +0 -271
- data/ext/third_party/spdlog/tests/test_mpmc_q.cpp +0 -106
- data/ext/third_party/spdlog/tests/test_pattern_formatter.cpp +0 -443
- data/ext/third_party/spdlog/tests/test_registry.cpp +0 -116
- data/ext/third_party/spdlog/tests/test_sink.h +0 -79
- data/ext/third_party/spdlog/tests/test_stdout_api.cpp +0 -98
- data/ext/third_party/spdlog/tests/test_systemd.cpp +0 -15
- data/ext/third_party/spdlog/tests/test_time_point.cpp +0 -36
- data/ext/third_party/spdlog/tests/utils.cpp +0 -125
- data/ext/third_party/spdlog/tests/utils.h +0 -18
- data/rbi/couchbase.rbi +0 -79
@@ -0,0 +1,207 @@
|
|
1
|
+
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2020 Couchbase, Inc.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
|
18
|
+
#pragma once
|
19
|
+
|
20
|
+
#include <cstring>
|
21
|
+
|
22
|
+
#include <arpa/inet.h>
|
23
|
+
|
24
|
+
#include <io/dns_message.hxx>
|
25
|
+
|
26
|
+
namespace couchbase::io::dns
|
27
|
+
{
|
28
|
+
class dns_codec
|
29
|
+
{
|
30
|
+
public:
|
31
|
+
static dns_message decode(const std::vector<uint8_t>& payload)
|
32
|
+
{
|
33
|
+
dns_message message{};
|
34
|
+
std::size_t offset = 0;
|
35
|
+
|
36
|
+
std::memcpy(&message.header.id, payload.data() + offset, sizeof(std::uint16_t));
|
37
|
+
offset += sizeof(std::uint16_t);
|
38
|
+
message.header.id = ntohs(message.header.id);
|
39
|
+
|
40
|
+
uint16_t flags = 0;
|
41
|
+
std::memcpy(&flags, payload.data() + offset, sizeof(std::uint16_t));
|
42
|
+
offset += sizeof(std::uint16_t);
|
43
|
+
message.header.flags.decode(ntohs(flags));
|
44
|
+
|
45
|
+
std::memcpy(&message.header.question_records, payload.data() + offset, sizeof(std::uint16_t));
|
46
|
+
offset += sizeof(std::uint16_t);
|
47
|
+
message.header.question_records = ntohs(message.header.question_records);
|
48
|
+
|
49
|
+
std::memcpy(&message.header.answer_records, payload.data() + offset, sizeof(std::uint16_t));
|
50
|
+
offset += sizeof(std::uint16_t);
|
51
|
+
message.header.answer_records = ntohs(message.header.answer_records);
|
52
|
+
|
53
|
+
std::memcpy(&message.header.authority_records, payload.data() + offset, sizeof(std::uint16_t));
|
54
|
+
offset += sizeof(std::uint16_t);
|
55
|
+
message.header.authority_records = ntohs(message.header.authority_records);
|
56
|
+
|
57
|
+
std::memcpy(&message.header.additional_records, payload.data() + offset, sizeof(std::uint16_t));
|
58
|
+
offset += sizeof(std::uint16_t);
|
59
|
+
message.header.additional_records = ntohs(message.header.additional_records);
|
60
|
+
|
61
|
+
for (std::uint16_t idx = 0; idx < message.header.question_records; ++idx) {
|
62
|
+
question_record qr;
|
63
|
+
qr.name = get_name(payload, offset);
|
64
|
+
|
65
|
+
std::uint16_t val = 0;
|
66
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
67
|
+
offset += sizeof(std::uint16_t);
|
68
|
+
val = ntohs(val);
|
69
|
+
qr.type = static_cast<resource_type>(val);
|
70
|
+
|
71
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
72
|
+
offset += sizeof(std::uint16_t);
|
73
|
+
val = ntohs(val);
|
74
|
+
qr.klass = static_cast<resource_class>(val);
|
75
|
+
|
76
|
+
message.questions.emplace_back(qr);
|
77
|
+
}
|
78
|
+
|
79
|
+
message.answers.reserve(message.header.answer_records);
|
80
|
+
for (std::uint16_t idx = 0; idx < message.header.answer_records; ++idx) {
|
81
|
+
srv_record ar;
|
82
|
+
ar.name = get_name(payload, offset);
|
83
|
+
|
84
|
+
std::uint16_t val = 0;
|
85
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
86
|
+
offset += sizeof(std::uint16_t);
|
87
|
+
val = ntohs(val);
|
88
|
+
ar.type = static_cast<resource_type>(val);
|
89
|
+
|
90
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
91
|
+
offset += sizeof(std::uint16_t);
|
92
|
+
val = ntohs(val);
|
93
|
+
ar.klass = static_cast<resource_class>(val);
|
94
|
+
|
95
|
+
std::memcpy(&ar.ttl, payload.data() + offset, sizeof(std::uint32_t));
|
96
|
+
offset += static_cast<std::uint16_t>(4U);
|
97
|
+
ar.ttl = ntohl(ar.ttl);
|
98
|
+
|
99
|
+
std::uint16_t size = 0;
|
100
|
+
std::memcpy(&size, payload.data() + offset, sizeof(std::uint16_t));
|
101
|
+
offset += sizeof(std::uint16_t);
|
102
|
+
size = ntohs(size);
|
103
|
+
|
104
|
+
if (ar.klass != resource_class::in || ar.type != resource_type::srv) {
|
105
|
+
// ignore everything except SRV answers
|
106
|
+
offset += size;
|
107
|
+
continue;
|
108
|
+
}
|
109
|
+
|
110
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
111
|
+
offset += sizeof(std::uint16_t);
|
112
|
+
ar.priority = ntohs(val);
|
113
|
+
|
114
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
115
|
+
offset += sizeof(std::uint16_t);
|
116
|
+
ar.weight = ntohs(val);
|
117
|
+
|
118
|
+
std::memcpy(&val, payload.data() + offset, sizeof(std::uint16_t));
|
119
|
+
offset += sizeof(std::uint16_t);
|
120
|
+
ar.port = ntohs(val);
|
121
|
+
|
122
|
+
ar.target = get_name(payload, offset);
|
123
|
+
|
124
|
+
message.answers.emplace_back(ar);
|
125
|
+
}
|
126
|
+
return message;
|
127
|
+
}
|
128
|
+
|
129
|
+
static std::vector<uint8_t> encode(const dns_message& message)
|
130
|
+
{
|
131
|
+
std::vector<std::uint8_t> payload;
|
132
|
+
payload.resize(message.request_size(), 0);
|
133
|
+
std::size_t offset = 0;
|
134
|
+
|
135
|
+
// write header
|
136
|
+
{
|
137
|
+
uint16_t val;
|
138
|
+
|
139
|
+
val = htons(message.header.id);
|
140
|
+
std::memcpy(payload.data() + offset, &val, sizeof(std::uint16_t));
|
141
|
+
offset += sizeof(std::uint16_t);
|
142
|
+
|
143
|
+
val = htons(message.header.flags.encode());
|
144
|
+
std::memcpy(payload.data() + offset, &val, sizeof(std::uint16_t));
|
145
|
+
offset += sizeof(std::uint16_t);
|
146
|
+
|
147
|
+
val = htons(static_cast<std::uint16_t>(message.questions.size()));
|
148
|
+
std::memcpy(payload.data() + offset, &val, sizeof(std::uint16_t));
|
149
|
+
offset += sizeof(std::uint16_t) + 3 * sizeof(std::uint16_t); // answer, authority, additional are all zeros
|
150
|
+
}
|
151
|
+
|
152
|
+
// write body
|
153
|
+
for (const auto& question : message.questions) {
|
154
|
+
for (const auto& label : question.name.labels) {
|
155
|
+
payload[offset] = static_cast<std::uint8_t>(label.size());
|
156
|
+
++offset;
|
157
|
+
std::memcpy(payload.data() + offset, label.data(), label.size());
|
158
|
+
offset += label.size();
|
159
|
+
}
|
160
|
+
payload[offset] = '\0';
|
161
|
+
++offset;
|
162
|
+
|
163
|
+
uint16_t val;
|
164
|
+
|
165
|
+
val = htons(static_cast<std::uint16_t>(question.type));
|
166
|
+
std::memcpy(payload.data() + offset, &val, sizeof(std::uint16_t));
|
167
|
+
offset += sizeof(std::uint16_t);
|
168
|
+
|
169
|
+
val = htons(static_cast<std::uint16_t>(question.klass));
|
170
|
+
std::memcpy(payload.data() + offset, &val, sizeof(std::uint16_t));
|
171
|
+
offset += sizeof(std::uint16_t);
|
172
|
+
}
|
173
|
+
return payload;
|
174
|
+
}
|
175
|
+
|
176
|
+
private:
|
177
|
+
static resource_name get_name(const std::vector<std::uint8_t>& payload, std::size_t& offset)
|
178
|
+
{
|
179
|
+
resource_name name{};
|
180
|
+
std::optional<std::size_t> save_offset{};
|
181
|
+
while (true) {
|
182
|
+
std::uint8_t len = payload[offset];
|
183
|
+
if (len == 0) {
|
184
|
+
offset += 1;
|
185
|
+
if (save_offset) {
|
186
|
+
// restore offset after pointer jump
|
187
|
+
offset = *save_offset;
|
188
|
+
}
|
189
|
+
return name;
|
190
|
+
}
|
191
|
+
if ((len & 0b1100'0000U) != 0) {
|
192
|
+
std::uint16_t ptr = 0;
|
193
|
+
std::memcpy(&ptr, payload.data() + offset, sizeof(std::uint16_t));
|
194
|
+
ptr = ntohs(ptr);
|
195
|
+
ptr &= 0b0011'1111'1111'1111U;
|
196
|
+
// store old offset and jump to pointer
|
197
|
+
save_offset = offset + sizeof(std::uint16_t);
|
198
|
+
offset = ptr;
|
199
|
+
} else {
|
200
|
+
std::string label(payload.data() + offset + 1, payload.data() + offset + 1 + len);
|
201
|
+
name.labels.emplace_back(label);
|
202
|
+
offset += static_cast<std::uint16_t>(1U + len);
|
203
|
+
}
|
204
|
+
}
|
205
|
+
}
|
206
|
+
};
|
207
|
+
} // namespace couchbase::io::dns
|
@@ -0,0 +1,116 @@
|
|
1
|
+
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2020 Couchbase, Inc.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
|
18
|
+
#pragma once
|
19
|
+
|
20
|
+
#include <unistd.h>
|
21
|
+
|
22
|
+
#include <string>
|
23
|
+
#include <fstream>
|
24
|
+
|
25
|
+
#include <asio/ip/address.hpp>
|
26
|
+
|
27
|
+
#include <timeout_defaults.hxx>
|
28
|
+
|
29
|
+
namespace couchbase::io::dns
|
30
|
+
{
|
31
|
+
class dns_config
|
32
|
+
{
|
33
|
+
public:
|
34
|
+
static inline constexpr auto default_resolv_conf_path = "/etc/resolv.conf";
|
35
|
+
static inline constexpr auto default_host = "8.8.8.8";
|
36
|
+
static inline constexpr std::uint16_t default_port = 53;
|
37
|
+
|
38
|
+
[[nodiscard]] const asio::ip::address& address() const
|
39
|
+
{
|
40
|
+
return address_;
|
41
|
+
}
|
42
|
+
|
43
|
+
[[nodiscard]] std::uint16_t port() const
|
44
|
+
{
|
45
|
+
return port_;
|
46
|
+
}
|
47
|
+
|
48
|
+
[[nodiscard]] std::chrono::milliseconds timeout() const
|
49
|
+
{
|
50
|
+
return timeout_;
|
51
|
+
}
|
52
|
+
|
53
|
+
static dns_config& get()
|
54
|
+
{
|
55
|
+
static dns_config instance{};
|
56
|
+
|
57
|
+
instance.initialize();
|
58
|
+
|
59
|
+
return instance;
|
60
|
+
}
|
61
|
+
|
62
|
+
private:
|
63
|
+
void initialize()
|
64
|
+
{
|
65
|
+
if (!initialized_) {
|
66
|
+
load_resolv_conf(default_resolv_conf_path);
|
67
|
+
std::error_code ec;
|
68
|
+
address_ = asio::ip::address::from_string(host_, ec);
|
69
|
+
if (ec) {
|
70
|
+
host_ = default_host;
|
71
|
+
address_ = asio::ip::address::from_string(host_, ec);
|
72
|
+
}
|
73
|
+
initialized_ = true;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
void load_resolv_conf(const char* conf_path)
|
78
|
+
{
|
79
|
+
if (access(conf_path, R_OK) == 0) {
|
80
|
+
std::ifstream conf(conf_path);
|
81
|
+
while (conf.good()) {
|
82
|
+
std::string line;
|
83
|
+
std::getline(conf, line);
|
84
|
+
if (line.empty()) {
|
85
|
+
continue;
|
86
|
+
}
|
87
|
+
std::size_t offset = 0;
|
88
|
+
while (line[offset] == ' ') {
|
89
|
+
++offset;
|
90
|
+
}
|
91
|
+
if (line[offset] == '#') {
|
92
|
+
continue;
|
93
|
+
}
|
94
|
+
std::size_t space = line.find(' ', offset);
|
95
|
+
if (space == std::string::npos || space == offset || line.size() < space + 2) {
|
96
|
+
continue;
|
97
|
+
}
|
98
|
+
std::string keyword = line.substr(offset, space);
|
99
|
+
if (keyword != "nameserver") {
|
100
|
+
continue;
|
101
|
+
}
|
102
|
+
offset = space + 1;
|
103
|
+
space = line.find(' ', offset);
|
104
|
+
host_ = line.substr(offset, space);
|
105
|
+
break;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
std::atomic_bool initialized_{ false };
|
111
|
+
std::string host_{ default_host };
|
112
|
+
asio::ip::address address_{};
|
113
|
+
std::uint16_t port_{ default_port };
|
114
|
+
std::chrono::milliseconds timeout_{ timeout_defaults::dns_srv_timeout };
|
115
|
+
};
|
116
|
+
} // namespace couchbase::io::dns
|
@@ -0,0 +1,555 @@
|
|
1
|
+
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2020 Couchbase, Inc.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
|
18
|
+
#pragma once
|
19
|
+
|
20
|
+
#include <cstdint>
|
21
|
+
#include <vector>
|
22
|
+
#include <string>
|
23
|
+
|
24
|
+
namespace couchbase::io::dns
|
25
|
+
{
|
26
|
+
/**
|
27
|
+
* 3.2.2. TYPE values
|
28
|
+
* ==================
|
29
|
+
*
|
30
|
+
* TYPE fields are used in resource records. Note that these types are a subset of QTYPEs.
|
31
|
+
*/
|
32
|
+
enum class resource_type : std::uint16_t {
|
33
|
+
/**
|
34
|
+
* a host address
|
35
|
+
*/
|
36
|
+
a = 1,
|
37
|
+
|
38
|
+
/**
|
39
|
+
* an authoritative name server
|
40
|
+
*/
|
41
|
+
ns = 2,
|
42
|
+
|
43
|
+
/**
|
44
|
+
* a mail destination (Obsolete - use MX)
|
45
|
+
*/
|
46
|
+
md = 3,
|
47
|
+
|
48
|
+
/**
|
49
|
+
* a mail forwarder (Obsolete - use MX)
|
50
|
+
*/
|
51
|
+
mf = 4,
|
52
|
+
|
53
|
+
/**
|
54
|
+
* the canonical name for an alias
|
55
|
+
*/
|
56
|
+
cname = 5,
|
57
|
+
|
58
|
+
/**
|
59
|
+
* marks the start of a zone of authority
|
60
|
+
*/
|
61
|
+
soa = 6,
|
62
|
+
|
63
|
+
/**
|
64
|
+
* a mailbox domain name (EXPERIMENTAL)
|
65
|
+
*/
|
66
|
+
mb = 7,
|
67
|
+
|
68
|
+
/**
|
69
|
+
* a mail group member (EXPERIMENTAL)
|
70
|
+
*/
|
71
|
+
mg = 8,
|
72
|
+
|
73
|
+
/**
|
74
|
+
* a mail rename domain name (EXPERIMENTAL)
|
75
|
+
*/
|
76
|
+
mr = 9,
|
77
|
+
|
78
|
+
/**
|
79
|
+
* a null RR (EXPERIMENTAL)
|
80
|
+
*/
|
81
|
+
null = 10,
|
82
|
+
|
83
|
+
/**
|
84
|
+
* a well known service description
|
85
|
+
*/
|
86
|
+
wks = 11,
|
87
|
+
|
88
|
+
/**
|
89
|
+
* a domain name pointer
|
90
|
+
*/
|
91
|
+
ptr = 12,
|
92
|
+
|
93
|
+
/**
|
94
|
+
* host information
|
95
|
+
*/
|
96
|
+
hinfo = 13,
|
97
|
+
|
98
|
+
/**
|
99
|
+
* mailbox or mail list information
|
100
|
+
*/
|
101
|
+
minfo = 14,
|
102
|
+
|
103
|
+
/**
|
104
|
+
* mail exchange
|
105
|
+
*/
|
106
|
+
mx = 15,
|
107
|
+
|
108
|
+
/**
|
109
|
+
* text strings
|
110
|
+
*/
|
111
|
+
txt = 16,
|
112
|
+
|
113
|
+
/**
|
114
|
+
* location services (RFC2782)
|
115
|
+
*/
|
116
|
+
srv = 33,
|
117
|
+
};
|
118
|
+
|
119
|
+
/**
|
120
|
+
* 3.2.4. CLASS values
|
121
|
+
* ===================
|
122
|
+
*
|
123
|
+
* CLASS fields appear in resource records. The following CLASS mnemonics and values are defined:
|
124
|
+
*
|
125
|
+
*
|
126
|
+
* 3.2.5. QCLASS values
|
127
|
+
* ====================
|
128
|
+
*
|
129
|
+
* QCLASS fields appear in the question section of a query. QCLASS values are a superset of CLASS values; every CLASS is a valid QCLASS. In
|
130
|
+
* addition to CLASS values, the following QCLASSes are defined:
|
131
|
+
*/
|
132
|
+
enum class resource_class : std::uint16_t {
|
133
|
+
/**
|
134
|
+
* the Internet
|
135
|
+
*/
|
136
|
+
in = 1,
|
137
|
+
|
138
|
+
/**
|
139
|
+
* the CSNET class (Obsolete - used only for examples in some obsolete RFCs)
|
140
|
+
*/
|
141
|
+
cs = 2,
|
142
|
+
|
143
|
+
/**
|
144
|
+
* the CHAOS class
|
145
|
+
*/
|
146
|
+
ch = 3,
|
147
|
+
|
148
|
+
/**
|
149
|
+
* Hesiod [Dyer 87]
|
150
|
+
*/
|
151
|
+
hs = 4,
|
152
|
+
|
153
|
+
/**
|
154
|
+
* any class
|
155
|
+
*/
|
156
|
+
any = 255,
|
157
|
+
};
|
158
|
+
|
159
|
+
/**
|
160
|
+
* [OPCODE]
|
161
|
+
*
|
162
|
+
* A four bit field that specifies kind of query in this message. This value is set by the originator of a query and copied into the
|
163
|
+
* response. The values are:
|
164
|
+
*
|
165
|
+
* 3-15 reserved for future use
|
166
|
+
*/
|
167
|
+
enum class opcode : std::uint8_t {
|
168
|
+
/**
|
169
|
+
* a standard query (QUERY)
|
170
|
+
*/
|
171
|
+
standard_query = 0,
|
172
|
+
|
173
|
+
/**
|
174
|
+
* an inverse query (IQUERY)
|
175
|
+
*/
|
176
|
+
inverse_query = 1,
|
177
|
+
|
178
|
+
/**
|
179
|
+
* a server status request (STATUS)
|
180
|
+
*/
|
181
|
+
status = 2,
|
182
|
+
};
|
183
|
+
|
184
|
+
/**
|
185
|
+
* [QR]
|
186
|
+
*
|
187
|
+
* A one bit field that specifies whether this message is a query (0), or a response (1).
|
188
|
+
*/
|
189
|
+
enum class message_type : std::uint8_t {
|
190
|
+
query = 0,
|
191
|
+
response = 1,
|
192
|
+
};
|
193
|
+
|
194
|
+
/**
|
195
|
+
* [AA]
|
196
|
+
*
|
197
|
+
* Authoritative Answer - this bit is valid in responses, and specifies that the responding name server is an authority for the domain name
|
198
|
+
* in question section.
|
199
|
+
*
|
200
|
+
* Note that the contents of the answer section may have multiple owner names because of aliases. The AA bit corresponds to the name which
|
201
|
+
* matches the query name, or the first owner name in the answer section.
|
202
|
+
*/
|
203
|
+
enum class authoritative_answer : std::uint8_t {
|
204
|
+
no = 0,
|
205
|
+
yes = 1,
|
206
|
+
};
|
207
|
+
|
208
|
+
/**
|
209
|
+
* [TC]
|
210
|
+
*
|
211
|
+
* TrunCation - specifies that this message was truncated due to length greater than that permitted on the transmission channel.
|
212
|
+
*/
|
213
|
+
enum class truncation : std::uint8_t {
|
214
|
+
no = 0,
|
215
|
+
yes = 1,
|
216
|
+
};
|
217
|
+
|
218
|
+
/**
|
219
|
+
* [RD]
|
220
|
+
*
|
221
|
+
* Recursion Desired - this bit may be set in a query and is copied into the response. If RD is set, it directs the name server to pursue
|
222
|
+
* the query recursively. Recursive query support is optional.
|
223
|
+
*/
|
224
|
+
enum class recursion_desired : std::uint8_t {
|
225
|
+
no = 0,
|
226
|
+
yes = 1,
|
227
|
+
};
|
228
|
+
|
229
|
+
/**
|
230
|
+
* [RA]
|
231
|
+
*
|
232
|
+
* Recursion Available - this be is set or cleared in a response, and denotes whether recursive query support is available in the name
|
233
|
+
* server.
|
234
|
+
*/
|
235
|
+
enum class recursion_available : std::uint8_t {
|
236
|
+
no = 0,
|
237
|
+
yes = 1,
|
238
|
+
};
|
239
|
+
|
240
|
+
/**
|
241
|
+
* [RCODE]
|
242
|
+
*
|
243
|
+
* Response code - this 4 bit field is set as part of responses. The values have the following interpretation:
|
244
|
+
*
|
245
|
+
* 6-15 Reserved for future use.
|
246
|
+
*/
|
247
|
+
enum class response_code : std::uint8_t {
|
248
|
+
/**
|
249
|
+
* No error condition
|
250
|
+
*/
|
251
|
+
no_error = 0,
|
252
|
+
|
253
|
+
/**
|
254
|
+
* The name server was unable to interpret the query.
|
255
|
+
*/
|
256
|
+
format_error = 1,
|
257
|
+
|
258
|
+
/**
|
259
|
+
* The name server was unable to process this query due to a problem with the name server.
|
260
|
+
*/
|
261
|
+
server_failure = 2,
|
262
|
+
|
263
|
+
/**
|
264
|
+
* Meaningful only for responses from an authoritative name server, this code signifies that the domain name referenced in the query
|
265
|
+
* does not exist.
|
266
|
+
*/
|
267
|
+
name_error = 3,
|
268
|
+
|
269
|
+
/**
|
270
|
+
* The name server does not support the requested kind of query.
|
271
|
+
*/
|
272
|
+
not_implemented = 4,
|
273
|
+
|
274
|
+
/**
|
275
|
+
* The name server refuses to perform the specified operation for policy reasons. For example, a name server may not wish to provide
|
276
|
+
* the information to the particular requester, or a name server may not wish to perform a particular operation (e.g., zone transfer)
|
277
|
+
* for particular data.
|
278
|
+
*/
|
279
|
+
refused = 5,
|
280
|
+
};
|
281
|
+
|
282
|
+
/**
|
283
|
+
* 4.1.1. Header section format
|
284
|
+
* ============================
|
285
|
+
*
|
286
|
+
* The header contains the following fields:
|
287
|
+
*
|
288
|
+
* 1 1 1 1 1 1
|
289
|
+
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
|
290
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
291
|
+
* | ID |
|
292
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
293
|
+
* |QR| OPCODE |AA|TC|RD|RA| <zero> | RCODE |
|
294
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
295
|
+
* | QDCOUNT |
|
296
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
297
|
+
* | ANCOUNT |
|
298
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
299
|
+
* | NSCOUNT |
|
300
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
301
|
+
* | ARCOUNT |
|
302
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
303
|
+
*/
|
304
|
+
struct dns_header {
|
305
|
+
struct dns_flags {
|
306
|
+
message_type qr{ message_type::query };
|
307
|
+
dns::opcode opcode{ dns::opcode::standard_query };
|
308
|
+
authoritative_answer aa{ authoritative_answer::no };
|
309
|
+
truncation tc{ truncation::no };
|
310
|
+
recursion_desired rd{ recursion_desired::yes };
|
311
|
+
recursion_available ra{ recursion_available::no };
|
312
|
+
response_code rcode{ response_code::no_error };
|
313
|
+
|
314
|
+
[[nodiscard]] std::uint16_t encode() const
|
315
|
+
{
|
316
|
+
return std::uint16_t((static_cast<std::uint32_t>(qr) & 1U) << 15U | (static_cast<std::uint32_t>(opcode) & 15U) << 11U |
|
317
|
+
(static_cast<std::uint32_t>(aa) & 1U) << 10U | (static_cast<std::uint32_t>(tc) & 1U) << 9U |
|
318
|
+
(static_cast<std::uint32_t>(rd) & 1U) << 8U | (static_cast<std::uint32_t>(ra) & 1U) << 7U |
|
319
|
+
(static_cast<std::uint32_t>(rcode) & 15U));
|
320
|
+
}
|
321
|
+
|
322
|
+
void decode(std::uint16_t blob)
|
323
|
+
{
|
324
|
+
qr = static_cast<message_type>((static_cast<std::uint32_t>(blob) >> 15U) & 1U);
|
325
|
+
opcode = static_cast<dns::opcode>((static_cast<std::uint32_t>(blob) >> 11U) & 15U);
|
326
|
+
|
327
|
+
aa = ((static_cast<std::uint32_t>(blob) >> 10U) & 1U) != 0U ? authoritative_answer::yes : authoritative_answer::no;
|
328
|
+
tc = ((static_cast<std::uint32_t>(blob) >> 9U) & 1U) != 0U ? truncation::yes : truncation::no;
|
329
|
+
rd = ((static_cast<std::uint32_t>(blob) >> 8U) & 1U) != 0U ? recursion_desired::yes : recursion_desired::no;
|
330
|
+
ra = ((static_cast<std::uint32_t>(blob) >> 7U) & 1U) != 0U ? recursion_available::yes : recursion_available::no;
|
331
|
+
|
332
|
+
rcode = static_cast<response_code>(blob & 15U);
|
333
|
+
}
|
334
|
+
};
|
335
|
+
|
336
|
+
/**
|
337
|
+
* [ID]
|
338
|
+
*
|
339
|
+
* A 16 bit identifier assigned by the program that generates any kind of query. This identifier is copied the corresponding reply and
|
340
|
+
* can be used by the requester to match up replies to outstanding queries.
|
341
|
+
*/
|
342
|
+
std::uint16_t id;
|
343
|
+
|
344
|
+
dns_flags flags;
|
345
|
+
|
346
|
+
/**
|
347
|
+
* [QDCOUNT]
|
348
|
+
*
|
349
|
+
* an unsigned 16 bit integer specifying the number of entries in the question section.
|
350
|
+
*/
|
351
|
+
std::uint16_t question_records;
|
352
|
+
|
353
|
+
/**
|
354
|
+
* [ANCOUNT]
|
355
|
+
*
|
356
|
+
* an unsigned 16 bit integer specifying the number of resource records in the answer section.
|
357
|
+
*/
|
358
|
+
std::uint16_t answer_records;
|
359
|
+
|
360
|
+
/**
|
361
|
+
* [NSCOUNT]
|
362
|
+
*
|
363
|
+
* an unsigned 16 bit integer specifying the number of name server resource records in the authority records section.
|
364
|
+
*/
|
365
|
+
std::uint16_t authority_records;
|
366
|
+
|
367
|
+
/**
|
368
|
+
* [ARCOUNT]
|
369
|
+
*
|
370
|
+
* an unsigned 16 bit integer specifying the number of resource records in the additional records section.
|
371
|
+
*/
|
372
|
+
std::uint16_t additional_records;
|
373
|
+
};
|
374
|
+
|
375
|
+
struct resource_name {
|
376
|
+
std::vector<std::string> labels{};
|
377
|
+
};
|
378
|
+
|
379
|
+
/**
|
380
|
+
* 4.1.2. Question section format
|
381
|
+
* ==============================
|
382
|
+
*
|
383
|
+
* The question section is used to carry the "question" in most queries, i.e., the parameters that define what is being asked. The section
|
384
|
+
* contains QDCOUNT (usually 1) entries, each of the following format:
|
385
|
+
*
|
386
|
+
* 1 1 1 1 1 1
|
387
|
+
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
|
388
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
389
|
+
* | |
|
390
|
+
* / QNAME /
|
391
|
+
* / /
|
392
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
393
|
+
* | QTYPE |
|
394
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
395
|
+
* | QCLASS |
|
396
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
397
|
+
*/
|
398
|
+
struct question_record {
|
399
|
+
/**
|
400
|
+
* [QNAME]
|
401
|
+
*
|
402
|
+
* a domain name represented as a sequence of labels, where each label consists of a length octet followed by that number of octets. The
|
403
|
+
* domain name terminates with the zero length octet for the null label of the root. Note that this field may be an odd number of
|
404
|
+
* octets; no padding is used.
|
405
|
+
*/
|
406
|
+
resource_name name{};
|
407
|
+
|
408
|
+
/**
|
409
|
+
* [QTYPE]
|
410
|
+
*
|
411
|
+
* a two octet code which specifies the type of the query. The values for this field include all codes valid for a TYPE field, together
|
412
|
+
* with some more general codes which can match more than one type of RR.
|
413
|
+
*/
|
414
|
+
resource_type type{};
|
415
|
+
|
416
|
+
/**
|
417
|
+
* [QCLASS]
|
418
|
+
*
|
419
|
+
* a two octet code that specifies the class of the query. For example, the QCLASS field is IN for the Internet.
|
420
|
+
*/
|
421
|
+
resource_class klass{};
|
422
|
+
|
423
|
+
[[nodiscard]] std::size_t size() const
|
424
|
+
{
|
425
|
+
std::size_t res = 2 * sizeof(std::uint16_t); // type + class
|
426
|
+
for (const auto& label : name.labels) {
|
427
|
+
res += sizeof(std::uint8_t) + label.size();
|
428
|
+
}
|
429
|
+
++res; // '\0'
|
430
|
+
return res;
|
431
|
+
}
|
432
|
+
};
|
433
|
+
|
434
|
+
/**
|
435
|
+
* 4.1.3. Resource record format
|
436
|
+
* =============================
|
437
|
+
*
|
438
|
+
* The answer, authority, and additional sections all share the same format: a variable number of resource records, where
|
439
|
+
* the number of records is specified in the corresponding count field in the header. Each resource record has the
|
440
|
+
* following format:
|
441
|
+
*
|
442
|
+
* 1 1 1 1 1 1
|
443
|
+
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
|
444
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
445
|
+
* | |
|
446
|
+
* / /
|
447
|
+
* / NAME /
|
448
|
+
* | |
|
449
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
450
|
+
* | TYPE |
|
451
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
452
|
+
* | CLASS |
|
453
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
454
|
+
* | TTL |
|
455
|
+
* | |
|
456
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
457
|
+
* | RDLENGTH |
|
458
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--|
|
459
|
+
* / RDATA /
|
460
|
+
* / /
|
461
|
+
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
462
|
+
*
|
463
|
+
* [RDLENGTH]
|
464
|
+
*
|
465
|
+
* an unsigned 16 bit integer that specifies the length in octets of the RDATA field.
|
466
|
+
*
|
467
|
+
* [RDATA]
|
468
|
+
*
|
469
|
+
* a variable length string of octets that describes the resource. The format of this information varies according to the TYPE and CLASS
|
470
|
+
* of the resource record. For example, the if the TYPE is A and the CLASS is IN, the RDATA field is a 4 octet ARPA Internet address.
|
471
|
+
*/
|
472
|
+
struct resource_record {
|
473
|
+
/**
|
474
|
+
* [NAME]
|
475
|
+
*
|
476
|
+
* a domain name to which this resource record pertains.
|
477
|
+
*/
|
478
|
+
resource_name name{};
|
479
|
+
|
480
|
+
/**
|
481
|
+
* [TYPE]
|
482
|
+
*
|
483
|
+
* two octets containing one of the RR type codes. This field specifies the meaning of the data in the RDATA field.
|
484
|
+
*/
|
485
|
+
resource_type type{};
|
486
|
+
|
487
|
+
/**
|
488
|
+
* [CLASS]
|
489
|
+
*
|
490
|
+
* two octets which specify the class of the data in the RDATA field.
|
491
|
+
*/
|
492
|
+
resource_class klass{};
|
493
|
+
|
494
|
+
/**
|
495
|
+
*
|
496
|
+
* [TTL]
|
497
|
+
*
|
498
|
+
* a 32 bit unsigned integer that specifies the time interval (in seconds) that the resource record may be cached before it should be
|
499
|
+
* discarded. Zero values are interpreted to mean that the RR can only be used for the transaction in progress, and should not be
|
500
|
+
* cached.
|
501
|
+
*/
|
502
|
+
std::uint32_t ttl{};
|
503
|
+
};
|
504
|
+
|
505
|
+
struct srv_record : resource_record {
|
506
|
+
std::uint16_t priority{};
|
507
|
+
std::uint16_t weight{};
|
508
|
+
std::uint16_t port{};
|
509
|
+
resource_name target{};
|
510
|
+
};
|
511
|
+
|
512
|
+
/**
|
513
|
+
* 4.1. Format
|
514
|
+
* ===========
|
515
|
+
*
|
516
|
+
* All communications inside of the domain protocol are carried in a single format called a message. The top level format of message is
|
517
|
+
* divided into 5 sections (some of which are empty in certain cases) shown below:
|
518
|
+
*
|
519
|
+
* +---------------------+
|
520
|
+
* | Header |
|
521
|
+
* +---------------------+
|
522
|
+
* | Question | the question for the name server
|
523
|
+
* +---------------------+
|
524
|
+
* | Answer | RRs answering the question
|
525
|
+
* +---------------------+
|
526
|
+
* | Authority | RRs pointing toward an authority
|
527
|
+
* +---------------------+
|
528
|
+
* | Additional | RRs holding additional information
|
529
|
+
* +---------------------+
|
530
|
+
*
|
531
|
+
* The header section is always present. The header includes fields that specify which of the remaining sections are present, and also
|
532
|
+
* specify whether the message is a query or a response, a standard query or some other opcode, etc.
|
533
|
+
*
|
534
|
+
* The names of the sections after the header are derived from their use in standard queries. The question section contains fields that
|
535
|
+
* describe a question to a name server. These fields are a query type (QTYPE), a query class (QCLASS), and a query domain name (QNAME).
|
536
|
+
* The last three sections have the same format: a possibly empty list of concatenated resource records (RRs). The answer section contains
|
537
|
+
* RRs that answer the question; the authority section contains RRs that point toward an authoritative name server; the additional records
|
538
|
+
* section contains RRs which relate to the query, but are not strictly answers for the question.
|
539
|
+
*/
|
540
|
+
struct dns_message {
|
541
|
+
dns_header header{};
|
542
|
+
std::vector<question_record> questions{};
|
543
|
+
std::vector<srv_record> answers{};
|
544
|
+
// the implementation only cares about SRV answers, so ignore everything else
|
545
|
+
|
546
|
+
[[nodiscard]] std::size_t request_size() const
|
547
|
+
{
|
548
|
+
std::size_t res = 6 * sizeof(std::uint16_t); // header
|
549
|
+
for (const auto& question : questions) {
|
550
|
+
res += question.size();
|
551
|
+
}
|
552
|
+
return res;
|
553
|
+
}
|
554
|
+
};
|
555
|
+
} // namespace couchbase::io::dns
|