couchbase 3.5.0 → 3.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2487) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/ext/0001-fix-build-for-mingw-w64-ucrt-x86_64-toolchain.patch +40 -0
  4. data/ext/CMakeLists.txt +22 -2
  5. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/any_completion_executor.hpp +336 -0
  6. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/any_completion_handler.hpp +812 -0
  7. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/any_io_executor.hpp +351 -0
  8. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/append.hpp +65 -0
  9. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/as_tuple.hpp +126 -0
  10. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/associated_allocator.hpp +214 -0
  11. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/associated_cancellation_slot.hpp +221 -0
  12. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/associated_executor.hpp +235 -0
  13. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/associated_immediate_executor.hpp +280 -0
  14. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/async_result.hpp +893 -0
  15. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_datagram_socket.hpp +1362 -0
  16. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_deadline_timer.hpp +710 -0
  17. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_file.hpp +824 -0
  18. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_io_object.hpp +286 -0
  19. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_random_access_file.hpp +689 -0
  20. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_raw_socket.hpp +1356 -0
  21. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_readable_pipe.hpp +626 -0
  22. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_seq_packet_socket.hpp +823 -0
  23. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_serial_port.hpp +987 -0
  24. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_signal_set.hpp +648 -0
  25. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_socket.hpp +1936 -0
  26. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_socket_acceptor.hpp +2708 -0
  27. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_socket_iostream.hpp +331 -0
  28. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_socket_streambuf.hpp +642 -0
  29. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_stream_file.hpp +744 -0
  30. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_stream_socket.hpp +1163 -0
  31. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_streambuf.hpp +450 -0
  32. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_streambuf_fwd.hpp +36 -0
  33. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_waitable_timer.hpp +824 -0
  34. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/basic_writable_pipe.hpp +622 -0
  35. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/bind_allocator.hpp +524 -0
  36. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/bind_cancellation_slot.hpp +536 -0
  37. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/bind_executor.hpp +576 -0
  38. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/bind_immediate_executor.hpp +543 -0
  39. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/buffer.hpp +2751 -0
  40. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/buffer_registration.hpp +318 -0
  41. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/buffered_read_stream.hpp +273 -0
  42. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/buffered_stream.hpp +292 -0
  43. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/buffered_write_stream.hpp +265 -0
  44. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/buffers_iterator.hpp +521 -0
  45. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/cancellation_signal.hpp +245 -0
  46. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/cancellation_state.hpp +235 -0
  47. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/cancellation_type.hpp +157 -0
  48. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/co_spawn.hpp +523 -0
  49. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/compose.hpp +319 -0
  50. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/connect.hpp +1180 -0
  51. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/consign.hpp +75 -0
  52. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/defer.hpp +218 -0
  53. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/deferred.hpp +715 -0
  54. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detached.hpp +105 -0
  55. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/array.hpp +30 -0
  56. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/array_fwd.hpp +32 -0
  57. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/atomic_count.hpp +59 -0
  58. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/base_from_cancellation_state.hpp +164 -0
  59. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/base_from_completion_cond.hpp +69 -0
  60. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/bind_handler.hpp +711 -0
  61. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/blocking_executor_op.hpp +107 -0
  62. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/buffer_sequence_adapter.hpp +837 -0
  63. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/chrono.hpp +45 -0
  64. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/completion_handler.hpp +88 -0
  65. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/composed_work.hpp +252 -0
  66. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/config.hpp +1422 -0
  67. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/consuming_buffers.hpp +443 -0
  68. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/cstddef.hpp +27 -0
  69. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/cstdint.hpp +40 -0
  70. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/deadline_timer_service.hpp +335 -0
  71. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/descriptor_read_op.hpp +188 -0
  72. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/descriptor_write_op.hpp +187 -0
  73. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/event.hpp +46 -0
  74. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/exception.hpp +29 -0
  75. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/executor_function.hpp +152 -0
  76. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/executor_op.hpp +84 -0
  77. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/fenced_block.hpp +40 -0
  78. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/functional.hpp +33 -0
  79. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/future.hpp +32 -0
  80. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/global.hpp +50 -0
  81. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/handler_alloc_helpers.hpp +225 -0
  82. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/handler_tracking.hpp +264 -0
  83. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/handler_type_requirements.hpp +553 -0
  84. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/handler_work.hpp +511 -0
  85. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/handler_tracking.ipp +398 -0
  86. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/io_uring_descriptor_service.ipp +205 -0
  87. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/io_uring_socket_service_base.ipp +249 -0
  88. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/reactive_descriptor_service.ipp +230 -0
  89. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/reactive_socket_service_base.ipp +310 -0
  90. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/resolver_service_base.ipp +158 -0
  91. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/service_registry.hpp +93 -0
  92. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/strand_executor_service.hpp +346 -0
  93. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/strand_service.hpp +86 -0
  94. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/throw_error.ipp +49 -0
  95. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/timer_queue_ptime.ipp +97 -0
  96. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/win_iocp_io_context.hpp +119 -0
  97. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/win_iocp_io_context.ipp +614 -0
  98. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/win_iocp_socket_service_base.ipp +821 -0
  99. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/impl/winrt_ssocket_service_base.ipp +626 -0
  100. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/initiate_defer.hpp +207 -0
  101. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/initiate_dispatch.hpp +193 -0
  102. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/initiate_post.hpp +207 -0
  103. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_object_impl.hpp +177 -0
  104. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_descriptor_read_at_op.hpp +195 -0
  105. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_descriptor_read_op.hpp +190 -0
  106. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_descriptor_service.hpp +687 -0
  107. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_descriptor_write_at_op.hpp +189 -0
  108. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_descriptor_write_op.hpp +185 -0
  109. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_null_buffers_op.hpp +114 -0
  110. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_accept_op.hpp +280 -0
  111. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_connect_op.hpp +140 -0
  112. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_recv_op.hpp +205 -0
  113. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_recvfrom_op.hpp +206 -0
  114. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_recvmsg_op.hpp +192 -0
  115. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_send_op.hpp +191 -0
  116. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_sendto_op.hpp +194 -0
  117. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_service.hpp +629 -0
  118. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_socket_service_base.hpp +663 -0
  119. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/io_uring_wait_op.hpp +112 -0
  120. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/is_buffer_sequence.hpp +296 -0
  121. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/limits.hpp +21 -0
  122. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/memory.hpp +126 -0
  123. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/mutex.hpp +46 -0
  124. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/non_const_lvalue.hpp +43 -0
  125. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/null_socket_service.hpp +519 -0
  126. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_descriptor_service.hpp +566 -0
  127. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_null_buffers_op.hpp +131 -0
  128. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_accept_op.hpp +323 -0
  129. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_connect_op.hpp +162 -0
  130. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_recv_op.hpp +197 -0
  131. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_recvfrom_op.hpp +203 -0
  132. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_recvmsg_op.hpp +184 -0
  133. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_send_op.hpp +201 -0
  134. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_sendto_op.hpp +194 -0
  135. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_service.hpp +633 -0
  136. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_socket_service_base.hpp +750 -0
  137. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/reactive_wait_op.hpp +131 -0
  138. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/recycling_allocator.hpp +105 -0
  139. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/regex_fwd.hpp +35 -0
  140. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/resolve_endpoint_op.hpp +140 -0
  141. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/resolve_query_op.hpp +150 -0
  142. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/resolver_service.hpp +147 -0
  143. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/service_registry.hpp +163 -0
  144. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/signal_handler.hpp +90 -0
  145. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/signal_set_service.hpp +292 -0
  146. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/static_mutex.hpp +50 -0
  147. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/std_event.hpp +183 -0
  148. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/std_fenced_block.hpp +57 -0
  149. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/std_global.hpp +65 -0
  150. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/std_mutex.hpp +68 -0
  151. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/std_static_mutex.hpp +76 -0
  152. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/std_thread.hpp +66 -0
  153. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/strand_executor_service.hpp +173 -0
  154. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/thread.hpp +58 -0
  155. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/thread_info_base.hpp +250 -0
  156. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/timer_queue_ptime.hpp +103 -0
  157. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/type_traits.hpp +178 -0
  158. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/utility.hpp +83 -0
  159. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/wait_handler.hpp +90 -0
  160. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_handle_read_op.hpp +119 -0
  161. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_handle_service.hpp +431 -0
  162. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_handle_write_op.hpp +114 -0
  163. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_null_buffers_op.hpp +129 -0
  164. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_overlapped_op.hpp +100 -0
  165. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_overlapped_ptr.hpp +171 -0
  166. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_accept_op.hpp +339 -0
  167. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_connect_op.hpp +138 -0
  168. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_recv_op.hpp +126 -0
  169. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_recvfrom_op.hpp +135 -0
  170. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_recvmsg_op.hpp +127 -0
  171. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_send_op.hpp +120 -0
  172. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_service.hpp +680 -0
  173. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_socket_service_base.hpp +829 -0
  174. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_iocp_wait_op.hpp +130 -0
  175. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/win_object_handle_service.hpp +194 -0
  176. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_resolve_op.hpp +125 -0
  177. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_resolver_service.hpp +212 -0
  178. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_socket_connect_op.hpp +98 -0
  179. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_socket_recv_op.hpp +119 -0
  180. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_socket_send_op.hpp +110 -0
  181. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_ssocket_service.hpp +250 -0
  182. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/winrt_ssocket_service_base.hpp +362 -0
  183. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/work_dispatcher.hpp +143 -0
  184. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/detail/wrapped_handler.hpp +217 -0
  185. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/dispatch.hpp +197 -0
  186. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/error.hpp +389 -0
  187. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/error_code.hpp +39 -0
  188. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/allocator.hpp +278 -0
  189. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/any_executor.hpp +1933 -0
  190. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/bad_executor.hpp +46 -0
  191. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/blocking.hpp +1360 -0
  192. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/blocking_adaptation.hpp +1080 -0
  193. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/context.hpp +191 -0
  194. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/context_as.hpp +190 -0
  195. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/executor.hpp +116 -0
  196. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/impl/bad_executor.ipp +40 -0
  197. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/invocable_archetype.hpp +43 -0
  198. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/mapping.hpp +1002 -0
  199. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/occupancy.hpp +184 -0
  200. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/outstanding_work.hpp +753 -0
  201. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/prefer_only.hpp +328 -0
  202. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution/relationship.hpp +751 -0
  203. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution.hpp +33 -0
  204. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/execution_context.hpp +388 -0
  205. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/executor.hpp +343 -0
  206. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/executor_work_guard.hpp +362 -0
  207. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/as_single.hpp +132 -0
  208. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/awaitable_operators.hpp +536 -0
  209. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/basic_channel.hpp +513 -0
  210. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/basic_concurrent_channel.hpp +513 -0
  211. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/cancellation_condition.hpp +152 -0
  212. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/channel.hpp +70 -0
  213. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/channel_error.hpp +82 -0
  214. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/channel_traits.hpp +301 -0
  215. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/co_composed.hpp +145 -0
  216. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/concurrent_channel.hpp +70 -0
  217. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_handler.hpp +77 -0
  218. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_message.hpp +129 -0
  219. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_operation.hpp +361 -0
  220. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_payload.hpp +222 -0
  221. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_receive_op.hpp +127 -0
  222. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_send_functions.hpp +192 -0
  223. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_send_op.hpp +148 -0
  224. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/channel_service.hpp +677 -0
  225. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/detail/impl/channel_service.hpp +620 -0
  226. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/as_single.hpp +176 -0
  227. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/channel_error.ipp +61 -0
  228. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/co_composed.hpp +1174 -0
  229. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/coro.hpp +1222 -0
  230. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/parallel_group.hpp +787 -0
  231. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/promise.hpp +255 -0
  232. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/impl/use_promise.hpp +66 -0
  233. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/parallel_group.hpp +456 -0
  234. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/use_coro.hpp +189 -0
  235. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/experimental/use_promise.hpp +111 -0
  236. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/generic/basic_endpoint.hpp +189 -0
  237. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/generic/datagram_protocol.hpp +123 -0
  238. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/generic/raw_protocol.hpp +121 -0
  239. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/generic/seq_packet_protocol.hpp +122 -0
  240. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/generic/stream_protocol.hpp +127 -0
  241. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/high_resolution_timer.hpp +39 -0
  242. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/any_completion_executor.ipp +126 -0
  243. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/any_io_executor.ipp +134 -0
  244. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/append.hpp +162 -0
  245. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/as_tuple.hpp +245 -0
  246. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/awaitable.hpp +1195 -0
  247. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/buffered_read_stream.hpp +404 -0
  248. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/buffered_write_stream.hpp +384 -0
  249. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/co_spawn.hpp +440 -0
  250. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/connect.hpp +809 -0
  251. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/consign.hpp +137 -0
  252. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/deferred.hpp +147 -0
  253. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/detached.hpp +77 -0
  254. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/error.ipp +128 -0
  255. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/error_code.ipp +206 -0
  256. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/execution_context.hpp +77 -0
  257. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/executor.hpp +300 -0
  258. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/executor.ipp +43 -0
  259. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/io_context.hpp +433 -0
  260. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/multiple_exceptions.ipp +45 -0
  261. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/prepend.hpp +163 -0
  262. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/read.hpp +1053 -0
  263. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/read_at.hpp +628 -0
  264. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/read_until.hpp +2941 -0
  265. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/redirect_error.hpp +250 -0
  266. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/spawn.hpp +1400 -0
  267. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/src.hpp +94 -0
  268. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/system_context.hpp +34 -0
  269. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/system_context.ipp +92 -0
  270. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/system_executor.hpp +179 -0
  271. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/thread_pool.hpp +277 -0
  272. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/use_awaitable.hpp +301 -0
  273. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/use_future.hpp +707 -0
  274. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/write.hpp +939 -0
  275. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/impl/write_at.hpp +551 -0
  276. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/io_context.hpp +1509 -0
  277. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/io_context_strand.hpp +385 -0
  278. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address.hpp +281 -0
  279. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address_v4.hpp +421 -0
  280. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address_v4_iterator.hpp +156 -0
  281. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address_v4_range.hpp +128 -0
  282. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address_v6.hpp +407 -0
  283. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address_v6_iterator.hpp +178 -0
  284. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/address_v6_range.hpp +124 -0
  285. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/bad_address_cast.hpp +63 -0
  286. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/basic_endpoint.hpp +282 -0
  287. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/basic_resolver.hpp +1112 -0
  288. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/basic_resolver_iterator.hpp +188 -0
  289. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/basic_resolver_results.hpp +307 -0
  290. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/detail/endpoint.hpp +141 -0
  291. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/detail/impl/endpoint.ipp +195 -0
  292. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/icmp.hpp +115 -0
  293. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/impl/address.ipp +235 -0
  294. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/impl/address_v4.ipp +206 -0
  295. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/impl/address_v6.ipp +342 -0
  296. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/impl/network_v4.ipp +218 -0
  297. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/impl/network_v6.ipp +187 -0
  298. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/network_v4.hpp +257 -0
  299. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/network_v6.hpp +231 -0
  300. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/tcp.hpp +155 -0
  301. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ip/udp.hpp +111 -0
  302. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/is_applicable_property.hpp +61 -0
  303. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/is_contiguous_iterator.hpp +45 -0
  304. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/local/basic_endpoint.hpp +243 -0
  305. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/local/datagram_protocol.hpp +80 -0
  306. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/local/seq_packet_protocol.hpp +84 -0
  307. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/local/stream_protocol.hpp +90 -0
  308. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/multiple_exceptions.hpp +52 -0
  309. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/packaged_task.hpp +66 -0
  310. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/placeholders.hpp +75 -0
  311. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/posix/basic_descriptor.hpp +773 -0
  312. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/posix/basic_stream_descriptor.hpp +559 -0
  313. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/post.hpp +213 -0
  314. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/prefer.hpp +577 -0
  315. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/prepend.hpp +66 -0
  316. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/query.hpp +311 -0
  317. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/read.hpp +1448 -0
  318. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/read_at.hpp +778 -0
  319. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/read_until.hpp +3124 -0
  320. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/recycling_allocator.hpp +138 -0
  321. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/redirect_error.hpp +64 -0
  322. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/registered_buffer.hpp +344 -0
  323. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/require.hpp +433 -0
  324. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/require_concept.hpp +343 -0
  325. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/signal_set_base.hpp +171 -0
  326. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/spawn.hpp +872 -0
  327. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/context.hpp +762 -0
  328. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/buffered_handshake_op.hpp +119 -0
  329. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/engine.hpp +169 -0
  330. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/handshake_op.hpp +67 -0
  331. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/impl/engine.ipp +377 -0
  332. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/impl/openssl_init.ipp +169 -0
  333. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/io.hpp +376 -0
  334. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/read_op.hpp +72 -0
  335. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/shutdown_op.hpp +69 -0
  336. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/stream_core.hpp +217 -0
  337. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/detail/write_op.hpp +76 -0
  338. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/error.hpp +123 -0
  339. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/impl/context.ipp +1319 -0
  340. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/impl/error.ipp +124 -0
  341. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ssl/stream.hpp +1038 -0
  342. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/steady_timer.hpp +37 -0
  343. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/strand.hpp +557 -0
  344. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/system_context.hpp +90 -0
  345. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/system_error.hpp +31 -0
  346. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/system_executor.hpp +671 -0
  347. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/system_timer.hpp +37 -0
  348. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/this_coro.hpp +267 -0
  349. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/thread_pool.hpp +963 -0
  350. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/equality_comparable.hpp +100 -0
  351. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/execute_member.hpp +104 -0
  352. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/prefer_free.hpp +104 -0
  353. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/prefer_member.hpp +104 -0
  354. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/query_free.hpp +104 -0
  355. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/query_member.hpp +104 -0
  356. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/query_static_constexpr_member.hpp +101 -0
  357. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/require_concept_free.hpp +104 -0
  358. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/require_concept_member.hpp +104 -0
  359. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/require_free.hpp +104 -0
  360. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/require_member.hpp +104 -0
  361. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/static_query.hpp +102 -0
  362. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/static_require.hpp +115 -0
  363. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/traits/static_require_concept.hpp +116 -0
  364. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/ts/netfwd.hpp +236 -0
  365. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/use_awaitable.hpp +161 -0
  366. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/use_future.hpp +159 -0
  367. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/uses_executor.hpp +67 -0
  368. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/version.hpp +23 -0
  369. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/windows/basic_object_handle.hpp +485 -0
  370. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/windows/basic_overlapped_handle.hpp +455 -0
  371. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/windows/basic_random_access_handle.hpp +567 -0
  372. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/windows/basic_stream_handle.hpp +551 -0
  373. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/windows/overlapped_ptr.hpp +145 -0
  374. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/write.hpp +1414 -0
  375. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio/write_at.hpp +789 -0
  376. data/ext/cache/asio/41f31469d0dd420500b334dc8c2fd3ffe7320d8e/asio/asio/include/asio.hpp +199 -0
  377. data/ext/cache/extconf_include.rb +3 -3
  378. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/CMakeLists.txt +453 -0
  379. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/ChangeLog.md +5533 -0
  380. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/README.md +490 -0
  381. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/args.h +235 -0
  382. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/chrono.h +2240 -0
  383. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/color.h +643 -0
  384. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/compile.h +535 -0
  385. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/core.h +2969 -0
  386. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/format-inl.h +1678 -0
  387. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/format.h +4535 -0
  388. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/os.h +455 -0
  389. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/ostream.h +245 -0
  390. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/printf.h +675 -0
  391. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/ranges.h +738 -0
  392. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/std.h +537 -0
  393. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/include/fmt/xchar.h +259 -0
  394. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/src/fmt.cc +108 -0
  395. data/ext/cache/fmt/d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/src/os.cc +402 -0
  396. data/ext/cache/llhttp/b74a6759ffeff2e9b72f62f790afbc73362a526b/llhttp/CMakeLists.txt +117 -0
  397. data/ext/cache/llhttp/b74a6759ffeff2e9b72f62f790afbc73362a526b/llhttp/include/llhttp.h +903 -0
  398. data/ext/cache/llhttp/b74a6759ffeff2e9b72f62f790afbc73362a526b/llhttp/src/llhttp.c +10149 -0
  399. data/ext/cache/mozilla-ca-bundle.crt +19 -32
  400. data/ext/cache/mozilla-ca-bundle.sha256 +1 -1
  401. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/CMakeLists.txt +359 -0
  402. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/LICENSE +26 -0
  403. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/async.h +100 -0
  404. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/async_logger-inl.h +84 -0
  405. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/async_logger.h +74 -0
  406. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/cfg/argv.h +40 -0
  407. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/cfg/env.h +36 -0
  408. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/cfg/helpers-inl.h +107 -0
  409. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/cfg/helpers.h +29 -0
  410. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/common-inl.h +68 -0
  411. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/common.h +411 -0
  412. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/backtracer-inl.h +63 -0
  413. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/backtracer.h +45 -0
  414. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/circular_q.h +113 -0
  415. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/console_globals.h +28 -0
  416. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/file_helper-inl.h +152 -0
  417. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/file_helper.h +61 -0
  418. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/fmt_helper.h +141 -0
  419. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/log_msg-inl.h +44 -0
  420. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/log_msg.h +40 -0
  421. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/log_msg_buffer-inl.h +54 -0
  422. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/log_msg_buffer.h +32 -0
  423. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/mpmc_blocking_q.h +177 -0
  424. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/null_mutex.h +35 -0
  425. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/os-inl.h +585 -0
  426. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/os.h +123 -0
  427. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/periodic_worker-inl.h +26 -0
  428. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/periodic_worker.h +57 -0
  429. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/registry-inl.h +265 -0
  430. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/registry.h +122 -0
  431. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/synchronous_factory.h +22 -0
  432. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/tcp_client-windows.h +135 -0
  433. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/tcp_client.h +127 -0
  434. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/thread_pool-inl.h +127 -0
  435. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/thread_pool.h +117 -0
  436. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/udp_client-windows.h +98 -0
  437. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/udp_client.h +81 -0
  438. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/details/windows_include.h +11 -0
  439. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/bin_to_hex.h +224 -0
  440. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/chrono.h +23 -0
  441. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/compile.h +23 -0
  442. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/fmt.h +34 -0
  443. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/ostr.h +23 -0
  444. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/ranges.h +23 -0
  445. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/std.h +24 -0
  446. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fmt/xchar.h +23 -0
  447. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/formatter.h +17 -0
  448. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/fwd.h +18 -0
  449. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/logger-inl.h +198 -0
  450. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/logger.h +379 -0
  451. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/pattern_formatter-inl.h +1268 -0
  452. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/pattern_formatter.h +118 -0
  453. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/android_sink.h +137 -0
  454. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +135 -0
  455. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/ansicolor_sink.h +115 -0
  456. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/base_sink-inl.h +59 -0
  457. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/base_sink.h +51 -0
  458. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +42 -0
  459. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/basic_file_sink.h +65 -0
  460. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/callback_sink.h +56 -0
  461. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/daily_file_sink.h +252 -0
  462. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/dist_sink.h +81 -0
  463. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/dup_filter_sink.h +92 -0
  464. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/hourly_file_sink.h +191 -0
  465. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/kafka_sink.h +119 -0
  466. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/mongo_sink.h +108 -0
  467. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/msvc_sink.h +68 -0
  468. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/null_sink.h +41 -0
  469. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/ostream_sink.h +43 -0
  470. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/qt_sinks.h +304 -0
  471. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/ringbuffer_sink.h +67 -0
  472. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +144 -0
  473. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/rotating_file_sink.h +89 -0
  474. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/sink-inl.h +22 -0
  475. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/sink.h +34 -0
  476. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +38 -0
  477. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/stdout_color_sinks.h +49 -0
  478. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +126 -0
  479. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/stdout_sinks.h +84 -0
  480. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/syslog_sink.h +103 -0
  481. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/systemd_sink.h +121 -0
  482. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/tcp_sink.h +75 -0
  483. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/udp_sink.h +69 -0
  484. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/win_eventlog_sink.h +260 -0
  485. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +163 -0
  486. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/sinks/wincolor_sink.h +82 -0
  487. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/spdlog-inl.h +92 -0
  488. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/spdlog.h +352 -0
  489. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/stopwatch.h +62 -0
  490. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/tweakme.h +141 -0
  491. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/include/spdlog/version.h +11 -0
  492. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/async.cpp +11 -0
  493. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/bundled_fmtlib_format.cpp +49 -0
  494. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/cfg.cpp +8 -0
  495. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/color_sinks.cpp +55 -0
  496. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/file_sinks.cpp +20 -0
  497. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/spdlog.cpp +28 -0
  498. data/ext/cache/spdlog/25435891d500fa18cdfc40bd923333e006159907/spdlog/src/stdout_sinks.cpp +37 -0
  499. data/ext/couchbase/CMakeLists.txt +20 -8
  500. data/ext/couchbase/cmake/0001-fix-build-for-mingw-w64-ucrt-x86_64-toolchain.patch +3 -4
  501. data/ext/couchbase/cmake/CompilerWarnings.cmake +2 -1
  502. data/ext/couchbase/cmake/Packaging.cmake +41 -0
  503. data/ext/couchbase/cmake/Sanitizers.cmake +1 -0
  504. data/ext/couchbase/cmake/StandardProjectSettings.cmake +0 -4
  505. data/ext/couchbase/cmake/ThirdPartyDependencies.cmake +15 -7
  506. data/ext/couchbase/cmake/VersionInfo.cmake +5 -5
  507. data/ext/couchbase/cmake/build_version.hxx.in +1 -0
  508. data/ext/couchbase/cmake/couchbase-cxx-client.pc.in +10 -0
  509. data/ext/couchbase/cmake/test_boringssl.cxx +1 -1
  510. data/ext/couchbase/cmake/test_openssl.cxx +1 -1
  511. data/ext/couchbase/core/agent.cxx +353 -304
  512. data/ext/couchbase/core/agent.hxx +94 -76
  513. data/ext/couchbase/core/agent_config.cxx +9 -8
  514. data/ext/couchbase/core/agent_config.hxx +7 -7
  515. data/ext/couchbase/core/agent_group.cxx +132 -120
  516. data/ext/couchbase/core/agent_group.hxx +26 -22
  517. data/ext/couchbase/core/agent_group_config.cxx +8 -7
  518. data/ext/couchbase/core/agent_group_config.hxx +6 -6
  519. data/ext/couchbase/core/agent_unit_test_api.hxx +6 -6
  520. data/ext/couchbase/core/analytics_query_options.cxx +21 -21
  521. data/ext/couchbase/core/analytics_query_options.hxx +19 -18
  522. data/ext/couchbase/core/analytics_scan_consistency.hxx +2 -2
  523. data/ext/couchbase/core/bucket.cxx +848 -758
  524. data/ext/couchbase/core/bucket.hxx +151 -139
  525. data/ext/couchbase/core/capella_ca.hxx +20 -19
  526. data/ext/couchbase/core/cluster.cxx +1239 -939
  527. data/ext/couchbase/core/cluster.hxx +254 -167
  528. data/ext/couchbase/core/cluster_agent.cxx +7 -7
  529. data/ext/couchbase/core/cluster_agent.hxx +4 -4
  530. data/ext/couchbase/core/cluster_agent_config.cxx +8 -7
  531. data/ext/couchbase/core/cluster_agent_config.hxx +6 -6
  532. data/ext/couchbase/core/cluster_options.cxx +17 -17
  533. data/ext/couchbase/core/cluster_options.hxx +50 -47
  534. data/ext/couchbase/core/cluster_state.hxx +3 -3
  535. data/ext/couchbase/core/collection_id_cache_entry.hxx +5 -4
  536. data/ext/couchbase/core/collections_component.cxx +372 -326
  537. data/ext/couchbase/core/collections_component.hxx +17 -13
  538. data/ext/couchbase/core/collections_component_unit_test_api.hxx +6 -6
  539. data/ext/couchbase/core/collections_options.hxx +29 -27
  540. data/ext/couchbase/core/config_listener.hxx +3 -3
  541. data/ext/couchbase/core/config_profile.hxx +3 -3
  542. data/ext/couchbase/core/config_profiles.cxx +31 -31
  543. data/ext/couchbase/core/config_profiles.hxx +19 -19
  544. data/ext/couchbase/core/core_sdk_shim.cxx +2 -1
  545. data/ext/couchbase/core/core_sdk_shim.hxx +2 -2
  546. data/ext/couchbase/core/crud_component.cxx +320 -272
  547. data/ext/couchbase/core/crud_component.hxx +21 -15
  548. data/ext/couchbase/core/crud_options.hxx +361 -354
  549. data/ext/couchbase/core/crypto/cbcrypto.cc +732 -627
  550. data/ext/couchbase/core/crypto/cbcrypto.h +12 -3
  551. data/ext/couchbase/core/design_document_namespace.hxx +2 -2
  552. data/ext/couchbase/core/design_document_namespace_fmt.hxx +18 -18
  553. data/ext/couchbase/core/diagnostics.hxx +44 -44
  554. data/ext/couchbase/core/diagnostics_fmt.hxx +76 -76
  555. data/ext/couchbase/core/diagnostics_json.hxx +61 -60
  556. data/ext/couchbase/core/diagntostics_options.hxx +14 -14
  557. data/ext/couchbase/core/dispatcher.cxx +4 -3
  558. data/ext/couchbase/core/dispatcher.hxx +8 -7
  559. data/ext/couchbase/core/document_id.cxx +37 -34
  560. data/ext/couchbase/core/document_id.hxx +87 -86
  561. data/ext/couchbase/core/document_id_fmt.hxx +10 -10
  562. data/ext/couchbase/core/durability_options.hxx +50 -49
  563. data/ext/couchbase/core/error_context/analytics.hxx +18 -18
  564. data/ext/couchbase/core/error_context/analytics_json.hxx +115 -0
  565. data/ext/couchbase/core/error_context/base_error_context.hxx +184 -0
  566. data/ext/couchbase/core/error_context/http.hxx +14 -14
  567. data/ext/couchbase/core/error_context/http_json.hxx +90 -0
  568. data/ext/couchbase/core/error_context/internal_tof_metadata_json.hxx +36 -0
  569. data/ext/couchbase/core/error_context/key_value.cxx +27 -27
  570. data/ext/couchbase/core/error_context/key_value.hxx +41 -38
  571. data/ext/couchbase/core/error_context/key_value_error_context.hxx +235 -0
  572. data/ext/couchbase/core/error_context/key_value_error_map_attribute.hxx +142 -0
  573. data/ext/couchbase/core/error_context/key_value_error_map_info.hxx +139 -0
  574. data/ext/couchbase/core/error_context/key_value_extended_error_info.hxx +86 -0
  575. data/ext/couchbase/core/error_context/key_value_json.hxx +83 -0
  576. data/ext/couchbase/core/error_context/key_value_status_code.hxx +109 -0
  577. data/ext/couchbase/core/error_context/query.hxx +18 -18
  578. data/ext/couchbase/core/error_context/query_error_context.hxx +150 -0
  579. data/ext/couchbase/core/error_context/query_json.hxx +114 -0
  580. data/ext/couchbase/core/error_context/query_public_json.hxx +84 -0
  581. data/ext/couchbase/core/error_context/search.hxx +17 -17
  582. data/ext/couchbase/core/error_context/search_json.hxx +101 -0
  583. data/ext/couchbase/core/error_context/subdocument_error_context.hxx +147 -0
  584. data/ext/couchbase/core/error_context/subdocument_json.hxx +48 -0
  585. data/ext/couchbase/core/error_context/transaction_error_context.hxx +49 -0
  586. data/ext/couchbase/core/error_context/transaction_op_error_context.hxx +79 -0
  587. data/ext/couchbase/core/error_context/view.hxx +17 -17
  588. data/ext/couchbase/core/fmt/key_value_error_map_attribute.hxx +100 -0
  589. data/ext/couchbase/core/fmt/key_value_extended_error_info.hxx +52 -0
  590. data/ext/couchbase/core/fmt/key_value_status_code.hxx +269 -0
  591. data/ext/couchbase/core/free_form_http_request.cxx +26 -26
  592. data/ext/couchbase/core/free_form_http_request.hxx +34 -33
  593. data/ext/couchbase/core/impl/analytics.cxx +111 -131
  594. data/ext/couchbase/core/impl/analytics.hxx +5 -7
  595. data/ext/couchbase/core/impl/analytics_error_category.cxx +29 -28
  596. data/ext/couchbase/core/impl/analytics_index_manager.cxx +615 -516
  597. data/ext/couchbase/core/impl/best_effort_retry_strategy.cxx +53 -50
  598. data/ext/couchbase/core/impl/binary_collection.cxx +346 -285
  599. data/ext/couchbase/core/impl/boolean_field_query.cxx +10 -10
  600. data/ext/couchbase/core/impl/boolean_query.cxx +27 -27
  601. data/ext/couchbase/core/impl/bootstrap_state_listener.hxx +6 -6
  602. data/ext/couchbase/core/impl/bucket.cxx +39 -34
  603. data/ext/couchbase/core/impl/bucket_manager.cxx +354 -313
  604. data/ext/couchbase/core/impl/cluster.cxx +430 -325
  605. data/ext/couchbase/core/impl/collection.cxx +1047 -1096
  606. data/ext/couchbase/core/impl/collection_manager.cxx +201 -170
  607. data/ext/couchbase/core/impl/common_error_category.cxx +58 -55
  608. data/ext/couchbase/core/impl/configuration_profiles_registry.cxx +46 -32
  609. data/ext/couchbase/core/impl/conjunction_query.cxx +17 -17
  610. data/ext/couchbase/core/impl/date_range.cxx +24 -20
  611. data/ext/couchbase/core/impl/date_range_facet.cxx +22 -22
  612. data/ext/couchbase/core/impl/date_range_facet_result.cxx +6 -6
  613. data/ext/couchbase/core/impl/date_range_query.cxx +50 -48
  614. data/ext/couchbase/core/impl/diagnostics.cxx +211 -198
  615. data/ext/couchbase/core/impl/diagnostics.hxx +7 -6
  616. data/ext/couchbase/core/impl/disjunction_query.cxx +18 -17
  617. data/ext/couchbase/core/impl/dns_srv_tracker.cxx +92 -75
  618. data/ext/couchbase/core/impl/dns_srv_tracker.hxx +24 -20
  619. data/ext/couchbase/core/impl/doc_id_query.cxx +9 -9
  620. data/ext/couchbase/core/impl/encoded_search_facet.hxx +2 -2
  621. data/ext/couchbase/core/impl/encoded_search_query.hxx +2 -2
  622. data/ext/couchbase/core/impl/encoded_search_sort.hxx +2 -2
  623. data/ext/couchbase/core/impl/error.cxx +171 -0
  624. data/ext/couchbase/core/impl/error.hxx +64 -0
  625. data/ext/couchbase/core/impl/error_context.cxx +56 -0
  626. data/ext/couchbase/core/impl/expiry.cxx +66 -53
  627. data/ext/couchbase/core/impl/fail_fast_retry_strategy.cxx +5 -4
  628. data/ext/couchbase/core/impl/field_level_encryption_error_category.cxx +30 -28
  629. data/ext/couchbase/core/impl/geo_bounding_box_query.cxx +17 -17
  630. data/ext/couchbase/core/impl/geo_distance_query.cxx +14 -14
  631. data/ext/couchbase/core/impl/geo_polygon_query.cxx +17 -17
  632. data/ext/couchbase/core/impl/get_all_replicas.hxx +26 -22
  633. data/ext/couchbase/core/impl/get_any_replica.hxx +25 -23
  634. data/ext/couchbase/core/impl/get_replica.cxx +18 -15
  635. data/ext/couchbase/core/impl/get_replica.hxx +23 -18
  636. data/ext/couchbase/core/impl/internal_date_range_facet_result.cxx +16 -14
  637. data/ext/couchbase/core/impl/internal_date_range_facet_result.hxx +16 -15
  638. data/ext/couchbase/core/impl/internal_error_context.cxx +79 -0
  639. data/ext/couchbase/core/impl/internal_error_context.hxx +52 -0
  640. data/ext/couchbase/core/impl/internal_numeric_range_facet_result.cxx +18 -15
  641. data/ext/couchbase/core/impl/internal_numeric_range_facet_result.hxx +16 -15
  642. data/ext/couchbase/core/impl/internal_scan_result.hxx +37 -0
  643. data/ext/couchbase/core/impl/internal_search_error_context.cxx +25 -22
  644. data/ext/couchbase/core/impl/internal_search_error_context.hxx +32 -31
  645. data/ext/couchbase/core/impl/internal_search_meta_data.cxx +15 -13
  646. data/ext/couchbase/core/impl/internal_search_meta_data.hxx +10 -9
  647. data/ext/couchbase/core/impl/internal_search_result.cxx +30 -22
  648. data/ext/couchbase/core/impl/internal_search_result.hxx +10 -9
  649. data/ext/couchbase/core/impl/internal_search_row.cxx +10 -10
  650. data/ext/couchbase/core/impl/internal_search_row.hxx +16 -16
  651. data/ext/couchbase/core/impl/internal_search_row_location.hxx +2 -2
  652. data/ext/couchbase/core/impl/internal_search_row_locations.cxx +68 -65
  653. data/ext/couchbase/core/impl/internal_search_row_locations.hxx +16 -13
  654. data/ext/couchbase/core/impl/internal_term_facet_result.cxx +16 -14
  655. data/ext/couchbase/core/impl/internal_term_facet_result.hxx +15 -15
  656. data/ext/couchbase/core/impl/key_value_error_category.cxx +73 -72
  657. data/ext/couchbase/core/impl/key_value_error_context.cxx +65 -65
  658. data/ext/couchbase/core/impl/logger.cxx +91 -0
  659. data/ext/couchbase/core/impl/lookup_in_all_replicas.hxx +32 -29
  660. data/ext/couchbase/core/impl/lookup_in_any_replica.hxx +33 -29
  661. data/ext/couchbase/core/impl/lookup_in_replica.cxx +75 -68
  662. data/ext/couchbase/core/impl/lookup_in_replica.hxx +30 -26
  663. data/ext/couchbase/core/impl/management_error_category.cxx +41 -40
  664. data/ext/couchbase/core/impl/match_all_query.cxx +6 -6
  665. data/ext/couchbase/core/impl/match_none_query.cxx +6 -6
  666. data/ext/couchbase/core/impl/match_phrase_query.cxx +13 -13
  667. data/ext/couchbase/core/impl/match_query.cxx +28 -28
  668. data/ext/couchbase/core/impl/network_error_category.cxx +39 -38
  669. data/ext/couchbase/core/impl/numeric_range.cxx +6 -6
  670. data/ext/couchbase/core/impl/numeric_range_facet.cxx +22 -22
  671. data/ext/couchbase/core/impl/numeric_range_facet_result.cxx +6 -6
  672. data/ext/couchbase/core/impl/numeric_range_query.cxx +22 -22
  673. data/ext/couchbase/core/impl/observe_poll.cxx +294 -277
  674. data/ext/couchbase/core/impl/observe_poll.hxx +1 -1
  675. data/ext/couchbase/core/impl/observe_seqno.cxx +21 -18
  676. data/ext/couchbase/core/impl/observe_seqno.hxx +31 -26
  677. data/ext/couchbase/core/impl/phrase_query.cxx +10 -10
  678. data/ext/couchbase/core/impl/prefix_query.cxx +10 -10
  679. data/ext/couchbase/core/impl/query.cxx +163 -154
  680. data/ext/couchbase/core/impl/query.hxx +6 -7
  681. data/ext/couchbase/core/impl/query_error_category.cxx +22 -21
  682. data/ext/couchbase/core/impl/query_error_context.cxx +45 -45
  683. data/ext/couchbase/core/impl/query_index_manager.cxx +488 -408
  684. data/ext/couchbase/core/impl/query_string_query.cxx +7 -7
  685. data/ext/couchbase/core/impl/regexp_query.cxx +10 -10
  686. data/ext/couchbase/core/impl/replica_utils.cxx +66 -0
  687. data/ext/couchbase/core/impl/replica_utils.hxx +48 -0
  688. data/ext/couchbase/core/impl/retry_action.cxx +3 -3
  689. data/ext/couchbase/core/impl/retry_reason.cxx +129 -56
  690. data/ext/couchbase/core/impl/retry_reason.hxx +28 -0
  691. data/ext/couchbase/core/impl/scan_result.cxx +178 -0
  692. data/ext/couchbase/core/impl/scope.cxx +103 -94
  693. data/ext/couchbase/core/impl/search.cxx +139 -130
  694. data/ext/couchbase/core/impl/search.hxx +4 -4
  695. data/ext/couchbase/core/impl/search_error_category.cxx +18 -17
  696. data/ext/couchbase/core/impl/search_index_manager.cxx +492 -390
  697. data/ext/couchbase/core/impl/search_meta_data.cxx +3 -3
  698. data/ext/couchbase/core/impl/search_request.cxx +78 -78
  699. data/ext/couchbase/core/impl/search_result.cxx +5 -5
  700. data/ext/couchbase/core/impl/search_row.cxx +7 -7
  701. data/ext/couchbase/core/impl/search_row_location.cxx +9 -8
  702. data/ext/couchbase/core/impl/search_row_locations.cxx +8 -7
  703. data/ext/couchbase/core/impl/search_sort_field.cxx +53 -53
  704. data/ext/couchbase/core/impl/search_sort_geo_distance.cxx +49 -48
  705. data/ext/couchbase/core/impl/search_sort_id.cxx +10 -10
  706. data/ext/couchbase/core/impl/search_sort_score.cxx +10 -10
  707. data/ext/couchbase/core/impl/streaming_json_lexer_error_category.cxx +70 -68
  708. data/ext/couchbase/core/impl/subdoc/array_add_unique.cxx +6 -6
  709. data/ext/couchbase/core/impl/subdoc/array_append.cxx +6 -6
  710. data/ext/couchbase/core/impl/subdoc/array_insert.cxx +6 -6
  711. data/ext/couchbase/core/impl/subdoc/array_prepend.cxx +6 -6
  712. data/ext/couchbase/core/impl/subdoc/command.hxx +5 -5
  713. data/ext/couchbase/core/impl/subdoc/command_bundle.hxx +11 -11
  714. data/ext/couchbase/core/impl/subdoc/count.cxx +6 -6
  715. data/ext/couchbase/core/impl/subdoc/counter.cxx +6 -6
  716. data/ext/couchbase/core/impl/subdoc/exists.cxx +6 -6
  717. data/ext/couchbase/core/impl/subdoc/get.cxx +6 -6
  718. data/ext/couchbase/core/impl/subdoc/insert.cxx +6 -6
  719. data/ext/couchbase/core/impl/subdoc/join_values.cxx +25 -25
  720. data/ext/couchbase/core/impl/subdoc/lookup_in_macro.cxx +61 -60
  721. data/ext/couchbase/core/impl/subdoc/lookup_in_specs.cxx +9 -9
  722. data/ext/couchbase/core/impl/subdoc/mutate_in_macro.cxx +48 -39
  723. data/ext/couchbase/core/impl/subdoc/mutate_in_specs.cxx +9 -9
  724. data/ext/couchbase/core/impl/subdoc/opcode.hxx +16 -16
  725. data/ext/couchbase/core/impl/subdoc/path_flags.hxx +40 -17
  726. data/ext/couchbase/core/impl/subdoc/remove.cxx +6 -6
  727. data/ext/couchbase/core/impl/subdoc/replace.cxx +6 -6
  728. data/ext/couchbase/core/impl/subdoc/upsert.cxx +6 -6
  729. data/ext/couchbase/core/impl/term_facet.cxx +8 -8
  730. data/ext/couchbase/core/impl/term_facet_result.cxx +6 -6
  731. data/ext/couchbase/core/impl/term_query.cxx +25 -25
  732. data/ext/couchbase/core/impl/term_range_query.cxx +22 -22
  733. data/ext/couchbase/core/impl/transaction_error_category.cxx +21 -20
  734. data/ext/couchbase/core/impl/transaction_get_result.cxx +41 -30
  735. data/ext/couchbase/core/impl/transaction_op_error_category.cxx +55 -56
  736. data/ext/couchbase/core/impl/vector_query.cxx +15 -10
  737. data/ext/couchbase/core/impl/vector_search.cxx +9 -9
  738. data/ext/couchbase/core/impl/view_error_category.cxx +17 -16
  739. data/ext/couchbase/core/impl/wildcard_query.cxx +10 -10
  740. data/ext/couchbase/core/impl/with_legacy_durability.hxx +30 -29
  741. data/ext/couchbase/core/io/dns_client.cxx +257 -232
  742. data/ext/couchbase/core/io/dns_client.hxx +19 -18
  743. data/ext/couchbase/core/io/dns_codec.hxx +156 -154
  744. data/ext/couchbase/core/io/dns_config.cxx +114 -109
  745. data/ext/couchbase/core/io/dns_config.hxx +15 -13
  746. data/ext/couchbase/core/io/dns_message.hxx +365 -342
  747. data/ext/couchbase/core/io/http_command.hxx +155 -134
  748. data/ext/couchbase/core/io/http_context.hxx +5 -5
  749. data/ext/couchbase/core/io/http_message.hxx +75 -71
  750. data/ext/couchbase/core/io/http_parser.cxx +70 -67
  751. data/ext/couchbase/core/io/http_parser.hxx +18 -18
  752. data/ext/couchbase/core/io/http_session.hxx +620 -520
  753. data/ext/couchbase/core/io/http_session_manager.hxx +406 -315
  754. data/ext/couchbase/core/io/http_traits.hxx +7 -0
  755. data/ext/couchbase/core/io/ip_protocol.hxx +3 -3
  756. data/ext/couchbase/core/io/mcbp_command.hxx +298 -278
  757. data/ext/couchbase/core/io/mcbp_context.hxx +7 -6
  758. data/ext/couchbase/core/io/mcbp_message.cxx +8 -8
  759. data/ext/couchbase/core/io/mcbp_message.hxx +19 -19
  760. data/ext/couchbase/core/io/mcbp_parser.cxx +60 -51
  761. data/ext/couchbase/core/io/mcbp_parser.hxx +21 -17
  762. data/ext/couchbase/core/io/mcbp_session.cxx +1769 -1599
  763. data/ext/couchbase/core/io/mcbp_session.hxx +63 -57
  764. data/ext/couchbase/core/io/query_cache.hxx +34 -34
  765. data/ext/couchbase/core/io/retry_context.hxx +45 -45
  766. data/ext/couchbase/core/io/retry_orchestrator.hxx +52 -42
  767. data/ext/couchbase/core/io/streams.hxx +210 -193
  768. data/ext/couchbase/core/json_string.hxx +47 -47
  769. data/ext/couchbase/core/key_value_config.cxx +8 -8
  770. data/ext/couchbase/core/key_value_config.hxx +12 -11
  771. data/ext/couchbase/core/logger/configuration.hxx +35 -35
  772. data/ext/couchbase/core/logger/custom_rotating_file_sink.cxx +73 -72
  773. data/ext/couchbase/core/logger/custom_rotating_file_sink.hxx +20 -18
  774. data/ext/couchbase/core/logger/level.hxx +9 -1
  775. data/ext/couchbase/core/logger/logger.cxx +279 -252
  776. data/ext/couchbase/core/logger/logger.hxx +110 -58
  777. data/ext/couchbase/core/management/analytics_dataset.hxx +4 -4
  778. data/ext/couchbase/core/management/analytics_index.hxx +4 -4
  779. data/ext/couchbase/core/management/analytics_link_azure_blob_external.cxx +35 -33
  780. data/ext/couchbase/core/management/analytics_link_azure_blob_external.hxx +36 -35
  781. data/ext/couchbase/core/management/analytics_link_azure_blob_external_json.hxx +24 -20
  782. data/ext/couchbase/core/management/analytics_link_couchbase_remote.cxx +66 -65
  783. data/ext/couchbase/core/management/analytics_link_couchbase_remote.hxx +77 -70
  784. data/ext/couchbase/core/management/analytics_link_couchbase_remote_json.hxx +38 -32
  785. data/ext/couchbase/core/management/analytics_link_s3_external.cxx +26 -25
  786. data/ext/couchbase/core/management/analytics_link_s3_external.hxx +30 -30
  787. data/ext/couchbase/core/management/analytics_link_s3_external_json.hxx +18 -16
  788. data/ext/couchbase/core/management/bucket_settings.hxx +109 -91
  789. data/ext/couchbase/core/management/bucket_settings_json.hxx +112 -94
  790. data/ext/couchbase/core/management/design_document.hxx +9 -9
  791. data/ext/couchbase/core/management/eventing_function.hxx +124 -115
  792. data/ext/couchbase/core/management/eventing_function_json.hxx +230 -178
  793. data/ext/couchbase/core/management/eventing_status.hxx +42 -37
  794. data/ext/couchbase/core/management/eventing_status_json.hxx +53 -40
  795. data/ext/couchbase/core/management/rbac.hxx +33 -28
  796. data/ext/couchbase/core/management/rbac_fmt.hxx +21 -21
  797. data/ext/couchbase/core/management/rbac_json.hxx +132 -125
  798. data/ext/couchbase/core/management/search_index.cxx +79 -0
  799. data/ext/couchbase/core/management/search_index.hxx +11 -10
  800. data/ext/couchbase/core/management/search_index_json.hxx +27 -26
  801. data/ext/couchbase/core/mcbp/barrier_frame.hxx +4 -3
  802. data/ext/couchbase/core/mcbp/big_endian.cxx +22 -22
  803. data/ext/couchbase/core/mcbp/buffer_writer.cxx +22 -19
  804. data/ext/couchbase/core/mcbp/buffer_writer.hxx +9 -9
  805. data/ext/couchbase/core/mcbp/codec.cxx +419 -397
  806. data/ext/couchbase/core/mcbp/codec.hxx +14 -12
  807. data/ext/couchbase/core/mcbp/command_code.cxx +48 -48
  808. data/ext/couchbase/core/mcbp/completion_token.hxx +33 -33
  809. data/ext/couchbase/core/mcbp/datatype.hxx +3 -3
  810. data/ext/couchbase/core/mcbp/durability_level.hxx +8 -7
  811. data/ext/couchbase/core/mcbp/durability_level_frame.hxx +3 -2
  812. data/ext/couchbase/core/mcbp/durability_timeout_frame.hxx +4 -3
  813. data/ext/couchbase/core/mcbp/open_tracing_frame.hxx +3 -2
  814. data/ext/couchbase/core/mcbp/operation_consumer.cxx +3 -3
  815. data/ext/couchbase/core/mcbp/operation_consumer.hxx +9 -9
  816. data/ext/couchbase/core/mcbp/operation_queue.cxx +76 -70
  817. data/ext/couchbase/core/mcbp/operation_queue.hxx +18 -17
  818. data/ext/couchbase/core/mcbp/packet.cxx +65 -51
  819. data/ext/couchbase/core/mcbp/packet.hxx +25 -25
  820. data/ext/couchbase/core/mcbp/preserve_expiry_frame.hxx +4 -2
  821. data/ext/couchbase/core/mcbp/queue_callback.hxx +3 -2
  822. data/ext/couchbase/core/mcbp/queue_request.cxx +65 -62
  823. data/ext/couchbase/core/mcbp/queue_request.hxx +54 -52
  824. data/ext/couchbase/core/mcbp/queue_request_connection_info.hxx +3 -3
  825. data/ext/couchbase/core/mcbp/queue_response.hxx +7 -7
  826. data/ext/couchbase/core/mcbp/read_units_frame.hxx +3 -2
  827. data/ext/couchbase/core/mcbp/server_duration.cxx +7 -7
  828. data/ext/couchbase/core/mcbp/server_duration_frame.hxx +3 -2
  829. data/ext/couchbase/core/mcbp/stream_id_frame.hxx +3 -2
  830. data/ext/couchbase/core/mcbp/unsupported_frame.hxx +4 -3
  831. data/ext/couchbase/core/mcbp/user_impersonation_frame.hxx +1 -1
  832. data/ext/couchbase/core/mcbp/write_units_frame.hxx +3 -2
  833. data/ext/couchbase/core/meta/features.hxx +64 -0
  834. data/ext/couchbase/core/meta/version.cxx +255 -204
  835. data/ext/couchbase/core/meta/version.hxx +31 -20
  836. data/ext/couchbase/core/metrics/logging_meter.cxx +160 -154
  837. data/ext/couchbase/core/metrics/logging_meter.hxx +16 -15
  838. data/ext/couchbase/core/metrics/logging_meter_options.hxx +1 -1
  839. data/ext/couchbase/core/metrics/noop_meter.hxx +14 -13
  840. data/ext/couchbase/core/mozilla_ca_bundle.hxx +2 -2
  841. data/ext/couchbase/core/n1ql_query_options.cxx +31 -31
  842. data/ext/couchbase/core/n1ql_query_options.hxx +22 -21
  843. data/ext/couchbase/core/operation_map.hxx +3 -3
  844. data/ext/couchbase/core/operations/document_analytics.cxx +187 -176
  845. data/ext/couchbase/core/operations/document_analytics.hxx +79 -71
  846. data/ext/couchbase/core/operations/document_append.cxx +18 -15
  847. data/ext/couchbase/core/operations/document_append.hxx +18 -16
  848. data/ext/couchbase/core/operations/document_decrement.cxx +26 -23
  849. data/ext/couchbase/core/operations/document_decrement.hxx +24 -20
  850. data/ext/couchbase/core/operations/document_exists.cxx +23 -21
  851. data/ext/couchbase/core/operations/document_exists.hxx +25 -23
  852. data/ext/couchbase/core/operations/document_get.cxx +17 -15
  853. data/ext/couchbase/core/operations/document_get.hxx +17 -15
  854. data/ext/couchbase/core/operations/document_get_all_replicas.hxx +121 -92
  855. data/ext/couchbase/core/operations/document_get_and_lock.cxx +19 -16
  856. data/ext/couchbase/core/operations/document_get_and_lock.hxx +21 -17
  857. data/ext/couchbase/core/operations/document_get_and_touch.cxx +19 -16
  858. data/ext/couchbase/core/operations/document_get_and_touch.hxx +22 -18
  859. data/ext/couchbase/core/operations/document_get_any_replica.hxx +111 -82
  860. data/ext/couchbase/core/operations/document_get_projected.cxx +193 -184
  861. data/ext/couchbase/core/operations/document_get_projected.hxx +25 -21
  862. data/ext/couchbase/core/operations/document_increment.cxx +26 -23
  863. data/ext/couchbase/core/operations/document_increment.hxx +24 -20
  864. data/ext/couchbase/core/operations/document_insert.cxx +23 -20
  865. data/ext/couchbase/core/operations/document_insert.hxx +20 -18
  866. data/ext/couchbase/core/operations/document_lookup_in.cxx +80 -67
  867. data/ext/couchbase/core/operations/document_lookup_in.hxx +31 -27
  868. data/ext/couchbase/core/operations/document_lookup_in_all_replicas.hxx +187 -149
  869. data/ext/couchbase/core/operations/document_lookup_in_any_replica.hxx +190 -145
  870. data/ext/couchbase/core/operations/document_mutate_in.cxx +98 -80
  871. data/ext/couchbase/core/operations/document_mutate_in.hxx +38 -33
  872. data/ext/couchbase/core/operations/document_prepend.cxx +18 -15
  873. data/ext/couchbase/core/operations/document_prepend.hxx +18 -16
  874. data/ext/couchbase/core/operations/document_query.cxx +367 -352
  875. data/ext/couchbase/core/operations/document_query.hxx +83 -79
  876. data/ext/couchbase/core/operations/document_remove.cxx +18 -15
  877. data/ext/couchbase/core/operations/document_remove.hxx +18 -16
  878. data/ext/couchbase/core/operations/document_replace.cxx +27 -24
  879. data/ext/couchbase/core/operations/document_replace.hxx +22 -20
  880. data/ext/couchbase/core/operations/document_search.cxx +322 -308
  881. data/ext/couchbase/core/operations/document_search.hxx +125 -121
  882. data/ext/couchbase/core/operations/document_touch.cxx +16 -14
  883. data/ext/couchbase/core/operations/document_touch.hxx +19 -17
  884. data/ext/couchbase/core/operations/document_unlock.cxx +16 -14
  885. data/ext/couchbase/core/operations/document_unlock.hxx +19 -17
  886. data/ext/couchbase/core/operations/document_upsert.cxx +26 -23
  887. data/ext/couchbase/core/operations/document_upsert.hxx +21 -19
  888. data/ext/couchbase/core/operations/document_view.cxx +169 -159
  889. data/ext/couchbase/core/operations/document_view.hxx +68 -65
  890. data/ext/couchbase/core/operations/http_noop.cxx +38 -35
  891. data/ext/couchbase/core/operations/http_noop.hxx +12 -10
  892. data/ext/couchbase/core/operations/management/analytics_dataset_create.cxx +58 -56
  893. data/ext/couchbase/core/operations/management/analytics_dataset_create.hxx +20 -17
  894. data/ext/couchbase/core/operations/management/analytics_dataset_drop.cxx +49 -44
  895. data/ext/couchbase/core/operations/management/analytics_dataset_drop.hxx +18 -15
  896. data/ext/couchbase/core/operations/management/analytics_dataset_get_all.cxx +46 -43
  897. data/ext/couchbase/core/operations/management/analytics_dataset_get_all.hxx +16 -13
  898. data/ext/couchbase/core/operations/management/analytics_dataverse_create.cxx +48 -43
  899. data/ext/couchbase/core/operations/management/analytics_dataverse_create.hxx +17 -14
  900. data/ext/couchbase/core/operations/management/analytics_dataverse_drop.cxx +48 -43
  901. data/ext/couchbase/core/operations/management/analytics_dataverse_drop.hxx +17 -14
  902. data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.cxx +38 -35
  903. data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.hxx +16 -14
  904. data/ext/couchbase/core/operations/management/analytics_index_create.cxx +68 -66
  905. data/ext/couchbase/core/operations/management/analytics_index_create.hxx +20 -17
  906. data/ext/couchbase/core/operations/management/analytics_index_drop.cxx +56 -51
  907. data/ext/couchbase/core/operations/management/analytics_index_drop.hxx +19 -16
  908. data/ext/couchbase/core/operations/management/analytics_index_get_all.cxx +44 -42
  909. data/ext/couchbase/core/operations/management/analytics_index_get_all.hxx +16 -13
  910. data/ext/couchbase/core/operations/management/analytics_link_connect.cxx +49 -43
  911. data/ext/couchbase/core/operations/management/analytics_link_connect.hxx +23 -20
  912. data/ext/couchbase/core/operations/management/analytics_link_create.cxx +52 -51
  913. data/ext/couchbase/core/operations/management/analytics_link_create.hxx +33 -30
  914. data/ext/couchbase/core/operations/management/analytics_link_disconnect.cxx +46 -42
  915. data/ext/couchbase/core/operations/management/analytics_link_disconnect.hxx +22 -19
  916. data/ext/couchbase/core/operations/management/analytics_link_drop.cxx +70 -67
  917. data/ext/couchbase/core/operations/management/analytics_link_drop.hxx +22 -19
  918. data/ext/couchbase/core/operations/management/analytics_link_get_all.cxx +92 -85
  919. data/ext/couchbase/core/operations/management/analytics_link_get_all.hxx +27 -24
  920. data/ext/couchbase/core/operations/management/analytics_link_replace.cxx +52 -51
  921. data/ext/couchbase/core/operations/management/analytics_link_replace.hxx +33 -30
  922. data/ext/couchbase/core/operations/management/analytics_link_utils.hxx +6 -4
  923. data/ext/couchbase/core/operations/management/analytics_problem.hxx +2 -2
  924. data/ext/couchbase/core/operations/management/bucket_create.cxx +158 -149
  925. data/ext/couchbase/core/operations/management/bucket_create.hxx +14 -12
  926. data/ext/couchbase/core/operations/management/bucket_describe.cxx +118 -42
  927. data/ext/couchbase/core/operations/management/bucket_describe.hxx +47 -22
  928. data/ext/couchbase/core/operations/management/bucket_drop.cxx +19 -18
  929. data/ext/couchbase/core/operations/management/bucket_drop.hxx +13 -11
  930. data/ext/couchbase/core/operations/management/bucket_flush.cxx +25 -24
  931. data/ext/couchbase/core/operations/management/bucket_flush.hxx +13 -11
  932. data/ext/couchbase/core/operations/management/bucket_get.cxx +24 -22
  933. data/ext/couchbase/core/operations/management/bucket_get.hxx +14 -12
  934. data/ext/couchbase/core/operations/management/bucket_get_all.cxx +25 -23
  935. data/ext/couchbase/core/operations/management/bucket_get_all.hxx +13 -11
  936. data/ext/couchbase/core/operations/management/bucket_update.cxx +112 -107
  937. data/ext/couchbase/core/operations/management/bucket_update.hxx +15 -13
  938. data/ext/couchbase/core/operations/management/change_password.cxx +22 -20
  939. data/ext/couchbase/core/operations/management/change_password.hxx +13 -11
  940. data/ext/couchbase/core/operations/management/cluster_describe.cxx +52 -50
  941. data/ext/couchbase/core/operations/management/cluster_describe.hxx +31 -29
  942. data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.cxx +14 -12
  943. data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.hxx +13 -11
  944. data/ext/couchbase/core/operations/management/collection_create.cxx +48 -46
  945. data/ext/couchbase/core/operations/management/collection_create.hxx +19 -16
  946. data/ext/couchbase/core/operations/management/collection_drop.cxx +37 -35
  947. data/ext/couchbase/core/operations/management/collection_drop.hxx +16 -14
  948. data/ext/couchbase/core/operations/management/collection_update.cxx +49 -47
  949. data/ext/couchbase/core/operations/management/collection_update.hxx +19 -16
  950. data/ext/couchbase/core/operations/management/collections_manifest_get.cxx +11 -9
  951. data/ext/couchbase/core/operations/management/collections_manifest_get.hxx +17 -13
  952. data/ext/couchbase/core/operations/management/error_utils.cxx +210 -198
  953. data/ext/couchbase/core/operations/management/error_utils.hxx +3 -1
  954. data/ext/couchbase/core/operations/management/eventing_deploy_function.cxx +31 -23
  955. data/ext/couchbase/core/operations/management/eventing_deploy_function.hxx +18 -12
  956. data/ext/couchbase/core/operations/management/eventing_drop_function.cxx +32 -24
  957. data/ext/couchbase/core/operations/management/eventing_drop_function.hxx +18 -12
  958. data/ext/couchbase/core/operations/management/eventing_get_all_functions.cxx +51 -30
  959. data/ext/couchbase/core/operations/management/eventing_get_all_functions.hxx +18 -12
  960. data/ext/couchbase/core/operations/management/eventing_get_function.cxx +30 -22
  961. data/ext/couchbase/core/operations/management/eventing_get_function.hxx +18 -13
  962. data/ext/couchbase/core/operations/management/eventing_get_status.cxx +46 -22
  963. data/ext/couchbase/core/operations/management/eventing_get_status.hxx +18 -12
  964. data/ext/couchbase/core/operations/management/eventing_pause_function.cxx +32 -23
  965. data/ext/couchbase/core/operations/management/eventing_pause_function.hxx +18 -12
  966. data/ext/couchbase/core/operations/management/eventing_problem.hxx +3 -3
  967. data/ext/couchbase/core/operations/management/eventing_resume_function.cxx +31 -23
  968. data/ext/couchbase/core/operations/management/eventing_resume_function.hxx +18 -12
  969. data/ext/couchbase/core/operations/management/eventing_undeploy_function.cxx +31 -23
  970. data/ext/couchbase/core/operations/management/eventing_undeploy_function.hxx +18 -12
  971. data/ext/couchbase/core/operations/management/eventing_upsert_function.cxx +330 -305
  972. data/ext/couchbase/core/operations/management/eventing_upsert_function.hxx +18 -12
  973. data/ext/couchbase/core/operations/management/freeform.cxx +23 -22
  974. data/ext/couchbase/core/operations/management/freeform.hxx +19 -17
  975. data/ext/couchbase/core/operations/management/group_drop.cxx +18 -17
  976. data/ext/couchbase/core/operations/management/group_drop.hxx +13 -11
  977. data/ext/couchbase/core/operations/management/group_get.cxx +25 -23
  978. data/ext/couchbase/core/operations/management/group_get.hxx +14 -12
  979. data/ext/couchbase/core/operations/management/group_get_all.cxx +23 -22
  980. data/ext/couchbase/core/operations/management/group_get_all.hxx +13 -11
  981. data/ext/couchbase/core/operations/management/group_upsert.cxx +58 -55
  982. data/ext/couchbase/core/operations/management/group_upsert.hxx +14 -12
  983. data/ext/couchbase/core/operations/management/query_index_build.cxx +53 -48
  984. data/ext/couchbase/core/operations/management/query_index_build.hxx +25 -22
  985. data/ext/couchbase/core/operations/management/query_index_build_deferred.hxx +75 -67
  986. data/ext/couchbase/core/operations/management/query_index_create.cxx +128 -122
  987. data/ext/couchbase/core/operations/management/query_index_create.hxx +31 -28
  988. data/ext/couchbase/core/operations/management/query_index_drop.cxx +95 -93
  989. data/ext/couchbase/core/operations/management/query_index_drop.hxx +26 -24
  990. data/ext/couchbase/core/operations/management/query_index_get_all.cxx +97 -93
  991. data/ext/couchbase/core/operations/management/query_index_get_all.hxx +24 -21
  992. data/ext/couchbase/core/operations/management/query_index_get_all_deferred.cxx +66 -62
  993. data/ext/couchbase/core/operations/management/query_index_get_all_deferred.hxx +24 -22
  994. data/ext/couchbase/core/operations/management/role_get_all.cxx +24 -22
  995. data/ext/couchbase/core/operations/management/role_get_all.hxx +13 -11
  996. data/ext/couchbase/core/operations/management/scope_create.cxx +38 -36
  997. data/ext/couchbase/core/operations/management/scope_create.hxx +15 -13
  998. data/ext/couchbase/core/operations/management/scope_drop.cxx +33 -32
  999. data/ext/couchbase/core/operations/management/scope_drop.hxx +15 -13
  1000. data/ext/couchbase/core/operations/management/scope_get_all.cxx +27 -25
  1001. data/ext/couchbase/core/operations/management/scope_get_all.hxx +14 -12
  1002. data/ext/couchbase/core/operations/management/search_get_stats.cxx +12 -10
  1003. data/ext/couchbase/core/operations/management/search_get_stats.hxx +13 -11
  1004. data/ext/couchbase/core/operations/management/search_index_analyze_document.cxx +72 -67
  1005. data/ext/couchbase/core/operations/management/search_index_analyze_document.hxx +20 -18
  1006. data/ext/couchbase/core/operations/management/search_index_control_ingest.cxx +62 -59
  1007. data/ext/couchbase/core/operations/management/search_index_control_ingest.hxx +19 -16
  1008. data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.cxx +62 -59
  1009. data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.hxx +19 -17
  1010. data/ext/couchbase/core/operations/management/search_index_control_query.cxx +62 -59
  1011. data/ext/couchbase/core/operations/management/search_index_control_query.hxx +19 -16
  1012. data/ext/couchbase/core/operations/management/search_index_drop.cxx +58 -55
  1013. data/ext/couchbase/core/operations/management/search_index_drop.hxx +18 -15
  1014. data/ext/couchbase/core/operations/management/search_index_get.cxx +59 -56
  1015. data/ext/couchbase/core/operations/management/search_index_get.hxx +18 -16
  1016. data/ext/couchbase/core/operations/management/search_index_get_all.cxx +51 -46
  1017. data/ext/couchbase/core/operations/management/search_index_get_all.hxx +18 -15
  1018. data/ext/couchbase/core/operations/management/search_index_get_documents_count.cxx +66 -61
  1019. data/ext/couchbase/core/operations/management/search_index_get_documents_count.hxx +19 -17
  1020. data/ext/couchbase/core/operations/management/search_index_get_stats.cxx +38 -36
  1021. data/ext/couchbase/core/operations/management/search_index_get_stats.hxx +17 -14
  1022. data/ext/couchbase/core/operations/management/search_index_upsert.cxx +98 -95
  1023. data/ext/couchbase/core/operations/management/search_index_upsert.hxx +20 -17
  1024. data/ext/couchbase/core/operations/management/user_drop.cxx +18 -17
  1025. data/ext/couchbase/core/operations/management/user_drop.hxx +16 -12
  1026. data/ext/couchbase/core/operations/management/user_get.cxx +25 -23
  1027. data/ext/couchbase/core/operations/management/user_get.hxx +17 -13
  1028. data/ext/couchbase/core/operations/management/user_get_all.cxx +24 -22
  1029. data/ext/couchbase/core/operations/management/user_get_all.hxx +16 -12
  1030. data/ext/couchbase/core/operations/management/user_upsert.cxx +63 -60
  1031. data/ext/couchbase/core/operations/management/user_upsert.hxx +17 -13
  1032. data/ext/couchbase/core/operations/management/view_index_drop.cxx +16 -12
  1033. data/ext/couchbase/core/operations/management/view_index_drop.hxx +15 -13
  1034. data/ext/couchbase/core/operations/management/view_index_get.cxx +40 -35
  1035. data/ext/couchbase/core/operations/management/view_index_get.hxx +16 -14
  1036. data/ext/couchbase/core/operations/management/view_index_get_all.cxx +73 -69
  1037. data/ext/couchbase/core/operations/management/view_index_get_all.hxx +16 -13
  1038. data/ext/couchbase/core/operations/management/view_index_upsert.cxx +39 -35
  1039. data/ext/couchbase/core/operations/management/view_index_upsert.hxx +15 -12
  1040. data/ext/couchbase/core/origin.cxx +264 -239
  1041. data/ext/couchbase/core/origin.hxx +55 -48
  1042. data/ext/couchbase/core/pending_operation.hxx +3 -3
  1043. data/ext/couchbase/core/ping_collector.hxx +3 -3
  1044. data/ext/couchbase/core/ping_options.hxx +30 -30
  1045. data/ext/couchbase/core/ping_reporter.hxx +3 -3
  1046. data/ext/couchbase/core/platform/backtrace.c +100 -91
  1047. data/ext/couchbase/core/platform/base64.cc +135 -134
  1048. data/ext/couchbase/core/platform/dirutils.cc +66 -63
  1049. data/ext/couchbase/core/platform/random.cc +43 -42
  1050. data/ext/couchbase/core/platform/random.h +4 -4
  1051. data/ext/couchbase/core/platform/string_hex.cc +42 -40
  1052. data/ext/couchbase/core/platform/terminate_handler.cc +54 -52
  1053. data/ext/couchbase/core/platform/uuid.cc +47 -47
  1054. data/ext/couchbase/core/protocol/client_opcode.hxx +336 -327
  1055. data/ext/couchbase/core/protocol/client_opcode_fmt.hxx +291 -291
  1056. data/ext/couchbase/core/protocol/client_request.cxx +13 -10
  1057. data/ext/couchbase/core/protocol/client_request.hxx +133 -130
  1058. data/ext/couchbase/core/protocol/client_response.cxx +40 -40
  1059. data/ext/couchbase/core/protocol/client_response.hxx +153 -150
  1060. data/ext/couchbase/core/protocol/cmd_append.cxx +24 -23
  1061. data/ext/couchbase/core/protocol/cmd_append.hxx +65 -65
  1062. data/ext/couchbase/core/protocol/cmd_cluster_map_change_notification.cxx +25 -21
  1063. data/ext/couchbase/core/protocol/cmd_cluster_map_change_notification.hxx +33 -25
  1064. data/ext/couchbase/core/protocol/cmd_decrement.cxx +38 -38
  1065. data/ext/couchbase/core/protocol/cmd_decrement.hxx +87 -87
  1066. data/ext/couchbase/core/protocol/cmd_get.cxx +17 -17
  1067. data/ext/couchbase/core/protocol/cmd_get.hxx +59 -59
  1068. data/ext/couchbase/core/protocol/cmd_get_and_lock.cxx +20 -20
  1069. data/ext/couchbase/core/protocol/cmd_get_and_lock.hxx +72 -72
  1070. data/ext/couchbase/core/protocol/cmd_get_and_touch.cxx +20 -20
  1071. data/ext/couchbase/core/protocol/cmd_get_and_touch.hxx +72 -72
  1072. data/ext/couchbase/core/protocol/cmd_get_cluster_config.cxx +46 -39
  1073. data/ext/couchbase/core/protocol/cmd_get_cluster_config.hxx +57 -49
  1074. data/ext/couchbase/core/protocol/cmd_get_collection_id.cxx +17 -17
  1075. data/ext/couchbase/core/protocol/cmd_get_collection_id.hxx +59 -59
  1076. data/ext/couchbase/core/protocol/cmd_get_collections_manifest.cxx +16 -14
  1077. data/ext/couchbase/core/protocol/cmd_get_collections_manifest.hxx +39 -39
  1078. data/ext/couchbase/core/protocol/cmd_get_error_map.cxx +18 -17
  1079. data/ext/couchbase/core/protocol/cmd_get_error_map.hxx +62 -62
  1080. data/ext/couchbase/core/protocol/cmd_get_meta.cxx +24 -23
  1081. data/ext/couchbase/core/protocol/cmd_get_meta.hxx +81 -79
  1082. data/ext/couchbase/core/protocol/cmd_get_replica.cxx +23 -23
  1083. data/ext/couchbase/core/protocol/cmd_get_replica.hxx +44 -44
  1084. data/ext/couchbase/core/protocol/cmd_hello.cxx +28 -27
  1085. data/ext/couchbase/core/protocol/cmd_hello.hxx +106 -105
  1086. data/ext/couchbase/core/protocol/cmd_increment.cxx +38 -38
  1087. data/ext/couchbase/core/protocol/cmd_increment.hxx +87 -87
  1088. data/ext/couchbase/core/protocol/cmd_info.hxx +3 -3
  1089. data/ext/couchbase/core/protocol/cmd_insert.cxx +27 -27
  1090. data/ext/couchbase/core/protocol/cmd_insert.hxx +81 -81
  1091. data/ext/couchbase/core/protocol/cmd_lookup_in.cxx +54 -51
  1092. data/ext/couchbase/core/protocol/cmd_lookup_in.hxx +90 -90
  1093. data/ext/couchbase/core/protocol/cmd_lookup_in_replica.cxx +54 -51
  1094. data/ext/couchbase/core/protocol/cmd_lookup_in_replica.hxx +88 -88
  1095. data/ext/couchbase/core/protocol/cmd_mutate_in.cxx +105 -97
  1096. data/ext/couchbase/core/protocol/cmd_mutate_in.hxx +161 -153
  1097. data/ext/couchbase/core/protocol/cmd_noop.cxx +4 -4
  1098. data/ext/couchbase/core/protocol/cmd_noop.hxx +32 -32
  1099. data/ext/couchbase/core/protocol/cmd_observe_seqno.cxx +36 -34
  1100. data/ext/couchbase/core/protocol/cmd_observe_seqno.hxx +89 -89
  1101. data/ext/couchbase/core/protocol/cmd_prepend.cxx +22 -22
  1102. data/ext/couchbase/core/protocol/cmd_prepend.hxx +63 -63
  1103. data/ext/couchbase/core/protocol/cmd_remove.cxx +23 -23
  1104. data/ext/couchbase/core/protocol/cmd_remove.hxx +54 -54
  1105. data/ext/couchbase/core/protocol/cmd_replace.cxx +28 -28
  1106. data/ext/couchbase/core/protocol/cmd_replace.hxx +88 -88
  1107. data/ext/couchbase/core/protocol/cmd_sasl_auth.cxx +17 -15
  1108. data/ext/couchbase/core/protocol/cmd_sasl_auth.hxx +56 -56
  1109. data/ext/couchbase/core/protocol/cmd_sasl_list_mechs.cxx +24 -19
  1110. data/ext/couchbase/core/protocol/cmd_sasl_list_mechs.hxx +39 -39
  1111. data/ext/couchbase/core/protocol/cmd_sasl_step.cxx +17 -15
  1112. data/ext/couchbase/core/protocol/cmd_sasl_step.hxx +56 -56
  1113. data/ext/couchbase/core/protocol/cmd_select_bucket.cxx +6 -6
  1114. data/ext/couchbase/core/protocol/cmd_select_bucket.hxx +36 -36
  1115. data/ext/couchbase/core/protocol/cmd_touch.cxx +8 -8
  1116. data/ext/couchbase/core/protocol/cmd_touch.hxx +38 -38
  1117. data/ext/couchbase/core/protocol/cmd_unlock.cxx +5 -5
  1118. data/ext/couchbase/core/protocol/cmd_unlock.hxx +36 -36
  1119. data/ext/couchbase/core/protocol/cmd_upsert.cxx +28 -28
  1120. data/ext/couchbase/core/protocol/cmd_upsert.hxx +83 -83
  1121. data/ext/couchbase/core/protocol/datatype.hxx +19 -18
  1122. data/ext/couchbase/core/protocol/frame_info_id.hxx +108 -103
  1123. data/ext/couchbase/core/protocol/frame_info_id_fmt.hxx +45 -45
  1124. data/ext/couchbase/core/protocol/frame_info_utils.cxx +24 -21
  1125. data/ext/couchbase/core/protocol/frame_info_utils.hxx +3 -1
  1126. data/ext/couchbase/core/protocol/hello_feature.hxx +211 -175
  1127. data/ext/couchbase/core/protocol/hello_feature_fmt.hxx +93 -90
  1128. data/ext/couchbase/core/protocol/magic.hxx +24 -24
  1129. data/ext/couchbase/core/protocol/magic_fmt.hxx +30 -30
  1130. data/ext/couchbase/core/protocol/server_opcode.hxx +11 -11
  1131. data/ext/couchbase/core/protocol/server_opcode_fmt.hxx +18 -18
  1132. data/ext/couchbase/core/protocol/server_request.hxx +90 -86
  1133. data/ext/couchbase/core/protocol/status.cxx +138 -138
  1134. data/ext/couchbase/core/protocol/status.hxx +86 -86
  1135. data/ext/couchbase/core/query_context.hxx +44 -43
  1136. data/ext/couchbase/core/range_scan_load_balancer.cxx +51 -50
  1137. data/ext/couchbase/core/range_scan_load_balancer.hxx +26 -25
  1138. data/ext/couchbase/core/range_scan_options.cxx +2 -2
  1139. data/ext/couchbase/core/range_scan_options.hxx +62 -59
  1140. data/ext/couchbase/core/range_scan_orchestrator.cxx +519 -465
  1141. data/ext/couchbase/core/range_scan_orchestrator.hxx +25 -17
  1142. data/ext/couchbase/core/range_scan_orchestrator_options.hxx +10 -10
  1143. data/ext/couchbase/core/resource_units.hxx +2 -2
  1144. data/ext/couchbase/core/response_handler.hxx +8 -8
  1145. data/ext/couchbase/core/retry_orchestrator.cxx +27 -19
  1146. data/ext/couchbase/core/retry_orchestrator.hxx +3 -2
  1147. data/ext/couchbase/core/sasl/client.cc +22 -18
  1148. data/ext/couchbase/core/sasl/client.h +66 -62
  1149. data/ext/couchbase/core/sasl/context.cc +4 -4
  1150. data/ext/couchbase/core/sasl/context.h +19 -19
  1151. data/ext/couchbase/core/sasl/error.h +12 -1
  1152. data/ext/couchbase/core/sasl/error_fmt.h +42 -42
  1153. data/ext/couchbase/core/sasl/mechanism.cc +13 -10
  1154. data/ext/couchbase/core/sasl/mechanism.h +8 -3
  1155. data/ext/couchbase/core/sasl/plain/plain.cc +8 -8
  1156. data/ext/couchbase/core/sasl/plain/plain.h +25 -24
  1157. data/ext/couchbase/core/sasl/scram-sha/scram-sha.cc +225 -218
  1158. data/ext/couchbase/core/sasl/scram-sha/scram-sha.h +133 -115
  1159. data/ext/couchbase/core/sasl/scram-sha/stringutils.cc +20 -20
  1160. data/ext/couchbase/core/scan_result.cxx +34 -23
  1161. data/ext/couchbase/core/scan_result.hxx +16 -15
  1162. data/ext/couchbase/core/search_highlight_style.hxx +4 -1
  1163. data/ext/couchbase/core/search_query_options.cxx +21 -21
  1164. data/ext/couchbase/core/search_query_options.hxx +19 -18
  1165. data/ext/couchbase/core/search_scan_consistency.hxx +3 -1
  1166. data/ext/couchbase/core/seed_config.cxx +10 -7
  1167. data/ext/couchbase/core/seed_config.hxx +8 -8
  1168. data/ext/couchbase/core/service_type.hxx +7 -7
  1169. data/ext/couchbase/core/service_type_fmt.hxx +33 -33
  1170. data/ext/couchbase/core/stats_options.hxx +13 -13
  1171. data/ext/couchbase/core/subdoc_options.hxx +60 -58
  1172. data/ext/couchbase/core/tls_verify_mode.hxx +2 -2
  1173. data/ext/couchbase/core/topology/capabilities.hxx +83 -83
  1174. data/ext/couchbase/core/topology/capabilities_fmt.hxx +111 -111
  1175. data/ext/couchbase/core/topology/collections_manifest.hxx +14 -14
  1176. data/ext/couchbase/core/topology/collections_manifest_fmt.hxx +23 -21
  1177. data/ext/couchbase/core/topology/collections_manifest_json.hxx +26 -25
  1178. data/ext/couchbase/core/topology/configuration.cxx +213 -192
  1179. data/ext/couchbase/core/topology/configuration.hxx +104 -91
  1180. data/ext/couchbase/core/topology/configuration_fmt.hxx +131 -128
  1181. data/ext/couchbase/core/topology/configuration_json.hxx +276 -242
  1182. data/ext/couchbase/core/topology/error_map.hxx +5 -5
  1183. data/ext/couchbase/core/topology/error_map_json.hxx +65 -60
  1184. data/ext/couchbase/core/tracing/constants.hxx +153 -153
  1185. data/ext/couchbase/core/tracing/noop_tracer.hxx +29 -28
  1186. data/ext/couchbase/core/tracing/threshold_logging_options.hxx +30 -30
  1187. data/ext/couchbase/core/tracing/threshold_logging_tracer.cxx +354 -344
  1188. data/ext/couchbase/core/tracing/threshold_logging_tracer.hxx +12 -12
  1189. data/ext/couchbase/core/transactions/active_transaction_record.cxx +153 -33
  1190. data/ext/couchbase/core/transactions/active_transaction_record.hxx +30 -118
  1191. data/ext/couchbase/core/transactions/async_attempt_context.cxx +8 -2
  1192. data/ext/couchbase/core/transactions/async_attempt_context.hxx +163 -127
  1193. data/ext/couchbase/core/transactions/atr_cleanup_entry.cxx +358 -334
  1194. data/ext/couchbase/core/transactions/atr_ids.cxx +270 -185
  1195. data/ext/couchbase/core/transactions/atr_ids.hxx +4 -4
  1196. data/ext/couchbase/core/transactions/attempt_context.cxx +9 -5
  1197. data/ext/couchbase/core/transactions/attempt_context.hxx +194 -154
  1198. data/ext/couchbase/core/transactions/attempt_context_impl.cxx +3278 -2159
  1199. data/ext/couchbase/core/transactions/attempt_context_impl.hxx +446 -573
  1200. data/ext/couchbase/core/transactions/attempt_context_testing_hooks.cxx +15 -10
  1201. data/ext/couchbase/core/transactions/attempt_context_testing_hooks.hxx +58 -49
  1202. data/ext/couchbase/core/transactions/attempt_state.hxx +72 -72
  1203. data/ext/couchbase/core/transactions/binary.cxx +3 -3
  1204. data/ext/couchbase/core/transactions/cleanup_testing_hooks.cxx +2 -2
  1205. data/ext/couchbase/core/transactions/cleanup_testing_hooks.hxx +28 -24
  1206. data/ext/couchbase/core/transactions/document_metadata.hxx +68 -68
  1207. data/ext/couchbase/core/transactions/durability_level.hxx +53 -53
  1208. data/ext/couchbase/core/transactions/error_class.hxx +12 -12
  1209. data/ext/couchbase/core/transactions/error_list.hxx +22 -22
  1210. data/ext/couchbase/core/transactions/exceptions.cxx +167 -114
  1211. data/ext/couchbase/core/transactions/exceptions.hxx +170 -139
  1212. data/ext/couchbase/core/transactions/exceptions_fmt.hxx +105 -0
  1213. data/ext/couchbase/core/transactions/forward_compat.cxx +220 -0
  1214. data/ext/couchbase/core/transactions/forward_compat.hxx +63 -207
  1215. data/ext/couchbase/core/transactions/internal/atr_cleanup_entry.hxx +110 -102
  1216. data/ext/couchbase/core/transactions/internal/atr_entry.hxx +144 -144
  1217. data/ext/couchbase/core/transactions/internal/client_record.hxx +53 -50
  1218. data/ext/couchbase/core/transactions/internal/doc_record.cxx +5 -5
  1219. data/ext/couchbase/core/transactions/internal/doc_record.hxx +38 -35
  1220. data/ext/couchbase/core/transactions/internal/doc_record_fmt.hxx +17 -16
  1221. data/ext/couchbase/core/transactions/internal/exceptions_internal.hxx +238 -281
  1222. data/ext/couchbase/core/transactions/internal/exceptions_internal_fmt.hxx +103 -0
  1223. data/ext/couchbase/core/transactions/internal/logging.hxx +52 -29
  1224. data/ext/couchbase/core/transactions/internal/transaction_attempt.hxx +3 -3
  1225. data/ext/couchbase/core/transactions/internal/transaction_context.hxx +136 -120
  1226. data/ext/couchbase/core/transactions/internal/transaction_fields.hxx +2 -1
  1227. data/ext/couchbase/core/transactions/internal/transactions_cleanup.hxx +127 -122
  1228. data/ext/couchbase/core/transactions/internal/utils.hxx +244 -219
  1229. data/ext/couchbase/core/transactions/result.cxx +41 -40
  1230. data/ext/couchbase/core/transactions/result.hxx +143 -141
  1231. data/ext/couchbase/core/transactions/result_fmt.hxx +21 -20
  1232. data/ext/couchbase/core/transactions/staged_mutation.cxx +759 -627
  1233. data/ext/couchbase/core/transactions/staged_mutation.hxx +175 -156
  1234. data/ext/couchbase/core/transactions/transaction_context.cxx +231 -179
  1235. data/ext/couchbase/core/transactions/transaction_get_result.cxx +185 -198
  1236. data/ext/couchbase/core/transactions/transaction_get_result.hxx +207 -222
  1237. data/ext/couchbase/core/transactions/transaction_keyspace.cxx +15 -11
  1238. data/ext/couchbase/core/transactions/transaction_links.cxx +11 -7
  1239. data/ext/couchbase/core/transactions/transaction_links.hxx +222 -201
  1240. data/ext/couchbase/core/transactions/transaction_options.cxx +44 -41
  1241. data/ext/couchbase/core/transactions/transactions.cxx +167 -125
  1242. data/ext/couchbase/core/transactions/transactions_cleanup.cxx +491 -424
  1243. data/ext/couchbase/core/transactions/transactions_config.cxx +25 -19
  1244. data/ext/couchbase/core/transactions/uid_generator.cxx +3 -3
  1245. data/ext/couchbase/core/transactions/uid_generator.hxx +2 -2
  1246. data/ext/couchbase/core/transactions/utils.cxx +82 -69
  1247. data/ext/couchbase/core/transactions/waitable_op_list.hxx +154 -140
  1248. data/ext/couchbase/core/transactions.hxx +184 -180
  1249. data/ext/couchbase/core/utils/binary.cxx +3 -3
  1250. data/ext/couchbase/core/utils/binary.hxx +19 -15
  1251. data/ext/couchbase/core/utils/byteswap.hxx +17 -17
  1252. data/ext/couchbase/core/utils/connection_string.cxx +395 -328
  1253. data/ext/couchbase/core/utils/connection_string.hxx +37 -36
  1254. data/ext/couchbase/core/utils/crc32.hxx +42 -34
  1255. data/ext/couchbase/core/utils/duration_parser.cxx +142 -133
  1256. data/ext/couchbase/core/utils/duration_parser.hxx +9 -9
  1257. data/ext/couchbase/core/utils/join_strings.hxx +24 -24
  1258. data/ext/couchbase/core/utils/json.cxx +234 -228
  1259. data/ext/couchbase/core/utils/json.hxx +12 -12
  1260. data/ext/couchbase/core/utils/json_stream_control.hxx +8 -8
  1261. data/ext/couchbase/core/utils/json_streaming_lexer.cxx +288 -263
  1262. data/ext/couchbase/core/utils/json_streaming_lexer.hxx +20 -17
  1263. data/ext/couchbase/core/utils/keyspace.hxx +22 -21
  1264. data/ext/couchbase/core/utils/movable_function.hxx +78 -76
  1265. data/ext/couchbase/core/utils/mutation_token.cxx +7 -3
  1266. data/ext/couchbase/core/utils/mutation_token.hxx +3 -1
  1267. data/ext/couchbase/core/utils/name_codec.hxx +13 -13
  1268. data/ext/couchbase/core/utils/split_string.cxx +9 -9
  1269. data/ext/couchbase/core/utils/split_string.hxx +2 -2
  1270. data/ext/couchbase/core/utils/unsigned_leb128.hxx +92 -88
  1271. data/ext/couchbase/core/utils/url_codec.cxx +301 -297
  1272. data/ext/couchbase/core/utils/url_codec.hxx +35 -35
  1273. data/ext/couchbase/core/vector_query_combination.hxx +4 -1
  1274. data/ext/couchbase/core/view_on_error.hxx +4 -3
  1275. data/ext/couchbase/core/view_query_options.cxx +21 -21
  1276. data/ext/couchbase/core/view_query_options.hxx +23 -22
  1277. data/ext/couchbase/core/view_scan_consistency.hxx +3 -3
  1278. data/ext/couchbase/core/view_sort_order.hxx +4 -1
  1279. data/ext/couchbase/core/wait_until_ready_options.hxx +11 -10
  1280. data/ext/couchbase/couchbase/allow_querying_search_index_options.hxx +11 -11
  1281. data/ext/couchbase/couchbase/analytics_index_manager.hxx +423 -405
  1282. data/ext/couchbase/couchbase/analytics_meta_data.hxx +105 -105
  1283. data/ext/couchbase/couchbase/analytics_metrics.hxx +120 -118
  1284. data/ext/couchbase/couchbase/analytics_options.hxx +318 -292
  1285. data/ext/couchbase/couchbase/analytics_result.hxx +56 -55
  1286. data/ext/couchbase/couchbase/analytics_scan_consistency.hxx +24 -21
  1287. data/ext/couchbase/couchbase/analytics_status.hxx +10 -10
  1288. data/ext/couchbase/couchbase/analytics_warning.hxx +44 -43
  1289. data/ext/couchbase/couchbase/analyze_document_options.hxx +9 -9
  1290. data/ext/couchbase/couchbase/append_options.hxx +51 -47
  1291. data/ext/couchbase/couchbase/behavior_options.hxx +75 -69
  1292. data/ext/couchbase/couchbase/best_effort_retry_strategy.hxx +12 -10
  1293. data/ext/couchbase/couchbase/binary_collection.hxx +213 -183
  1294. data/ext/couchbase/couchbase/boolean_field_query.hxx +38 -38
  1295. data/ext/couchbase/couchbase/boolean_query.hxx +166 -157
  1296. data/ext/couchbase/couchbase/bucket.hxx +69 -68
  1297. data/ext/couchbase/couchbase/bucket_manager.hxx +97 -88
  1298. data/ext/couchbase/couchbase/build_query_index_options.hxx +22 -21
  1299. data/ext/couchbase/couchbase/cas.hxx +74 -73
  1300. data/ext/couchbase/couchbase/certificate_authenticator.hxx +10 -10
  1301. data/ext/couchbase/couchbase/cluster.hxx +266 -310
  1302. data/ext/couchbase/couchbase/cluster_options.hxx +235 -241
  1303. data/ext/couchbase/couchbase/codec/binary_noop_serializer.hxx +11 -11
  1304. data/ext/couchbase/couchbase/codec/codec_flags.hxx +39 -35
  1305. data/ext/couchbase/couchbase/codec/encoded_value.hxx +15 -2
  1306. data/ext/couchbase/couchbase/codec/json_transcoder.hxx +17 -15
  1307. data/ext/couchbase/couchbase/codec/raw_binary_transcoder.hxx +19 -17
  1308. data/ext/couchbase/couchbase/codec/raw_json_transcoder.hxx +31 -24
  1309. data/ext/couchbase/couchbase/codec/raw_string_transcoder.hxx +20 -18
  1310. data/ext/couchbase/couchbase/codec/tao_json_serializer.hxx +38 -30
  1311. data/ext/couchbase/couchbase/collection.hxx +1010 -869
  1312. data/ext/couchbase/couchbase/collection_manager.hxx +115 -107
  1313. data/ext/couchbase/couchbase/collection_query_index_manager.hxx +200 -188
  1314. data/ext/couchbase/couchbase/common_durability_options.hxx +68 -62
  1315. data/ext/couchbase/couchbase/common_options.hxx +67 -67
  1316. data/ext/couchbase/couchbase/compression_options.hxx +33 -33
  1317. data/ext/couchbase/couchbase/configuration_profile.hxx +12 -11
  1318. data/ext/couchbase/couchbase/configuration_profiles_registry.hxx +24 -22
  1319. data/ext/couchbase/couchbase/conjunction_query.hxx +47 -45
  1320. data/ext/couchbase/couchbase/connect_link_analytics_options.hxx +74 -72
  1321. data/ext/couchbase/couchbase/counter_result.hxx +32 -32
  1322. data/ext/couchbase/couchbase/create_bucket_options.hxx +9 -10
  1323. data/ext/couchbase/couchbase/create_collection_options.hxx +35 -34
  1324. data/ext/couchbase/couchbase/create_dataset_analytics_options.hxx +76 -76
  1325. data/ext/couchbase/couchbase/create_dataverse_analytics_options.hxx +44 -44
  1326. data/ext/couchbase/couchbase/create_index_analytics_options.hxx +60 -60
  1327. data/ext/couchbase/couchbase/create_link_analytics_options.hxx +25 -25
  1328. data/ext/couchbase/couchbase/create_primary_query_index_options.hxx +95 -94
  1329. data/ext/couchbase/couchbase/create_query_index_options.hxx +97 -96
  1330. data/ext/couchbase/couchbase/create_scope_options.hxx +9 -9
  1331. data/ext/couchbase/couchbase/date_range.hxx +29 -27
  1332. data/ext/couchbase/couchbase/date_range_facet.hxx +20 -20
  1333. data/ext/couchbase/couchbase/date_range_facet_result.hxx +14 -14
  1334. data/ext/couchbase/couchbase/date_range_query.hxx +219 -205
  1335. data/ext/couchbase/couchbase/decrement_options.hxx +93 -91
  1336. data/ext/couchbase/couchbase/diagnostics_options.hxx +42 -41
  1337. data/ext/couchbase/couchbase/diagnostics_result.hxx +82 -83
  1338. data/ext/couchbase/couchbase/disallow_querying_search_index_options.hxx +11 -10
  1339. data/ext/couchbase/couchbase/disconnect_link_analytics_options.hxx +62 -62
  1340. data/ext/couchbase/couchbase/disjunction_query.hxx +61 -60
  1341. data/ext/couchbase/couchbase/dns_options.hxx +30 -30
  1342. data/ext/couchbase/couchbase/doc_id_query.hxx +69 -69
  1343. data/ext/couchbase/couchbase/drop_bucket_options.hxx +9 -9
  1344. data/ext/couchbase/couchbase/drop_collection_options.hxx +9 -9
  1345. data/ext/couchbase/couchbase/drop_dataset_analytics_options.hxx +60 -60
  1346. data/ext/couchbase/couchbase/drop_dataverse_analytics_options.hxx +44 -44
  1347. data/ext/couchbase/couchbase/drop_index_analytics_options.hxx +60 -60
  1348. data/ext/couchbase/couchbase/drop_link_analytics_options.hxx +25 -25
  1349. data/ext/couchbase/couchbase/drop_primary_query_index_options.hxx +58 -58
  1350. data/ext/couchbase/couchbase/drop_query_index_options.hxx +44 -44
  1351. data/ext/couchbase/couchbase/drop_scope_options.hxx +9 -9
  1352. data/ext/couchbase/couchbase/drop_search_index_options.hxx +9 -9
  1353. data/ext/couchbase/couchbase/durability_level.hxx +32 -29
  1354. data/ext/couchbase/couchbase/endpoint_diagnostics.hxx +171 -171
  1355. data/ext/couchbase/couchbase/endpoint_ping_report.hxx +166 -169
  1356. data/ext/couchbase/couchbase/error.hxx +51 -0
  1357. data/ext/couchbase/couchbase/error_codes.hxx +975 -940
  1358. data/ext/couchbase/couchbase/error_context.hxx +19 -152
  1359. data/ext/couchbase/couchbase/exists_options.hxx +25 -24
  1360. data/ext/couchbase/couchbase/exists_result.hxx +32 -32
  1361. data/ext/couchbase/couchbase/fail_fast_retry_strategy.hxx +4 -4
  1362. data/ext/couchbase/couchbase/flush_bucket_options.hxx +9 -9
  1363. data/ext/couchbase/couchbase/fmt/analytics_scan_consistency.hxx +18 -18
  1364. data/ext/couchbase/couchbase/fmt/analytics_status.hxx +42 -42
  1365. data/ext/couchbase/couchbase/fmt/cas.hxx +10 -10
  1366. data/ext/couchbase/couchbase/fmt/durability_level.hxx +24 -24
  1367. data/ext/couchbase/couchbase/fmt/error.hxx +53 -0
  1368. data/ext/couchbase/couchbase/fmt/error_context.hxx +43 -0
  1369. data/ext/couchbase/couchbase/fmt/mutation_token.hxx +15 -11
  1370. data/ext/couchbase/couchbase/fmt/query_profile.hxx +21 -21
  1371. data/ext/couchbase/couchbase/fmt/query_scan_consistency.hxx +18 -18
  1372. data/ext/couchbase/couchbase/fmt/query_status.hxx +42 -42
  1373. data/ext/couchbase/couchbase/fmt/retry_reason.hxx +75 -75
  1374. data/ext/couchbase/couchbase/fmt/search_scan_consistency.hxx +15 -15
  1375. data/ext/couchbase/couchbase/fmt/tls_verify_mode.hxx +18 -18
  1376. data/ext/couchbase/couchbase/fmt/transaction_keyspace.hxx +15 -11
  1377. data/ext/couchbase/couchbase/fork_event.hxx +12 -12
  1378. data/ext/couchbase/couchbase/freeze_plan_search_index_options.hxx +9 -9
  1379. data/ext/couchbase/couchbase/geo_bounding_box_query.hxx +71 -64
  1380. data/ext/couchbase/couchbase/geo_distance_query.hxx +73 -66
  1381. data/ext/couchbase/couchbase/geo_point.hxx +2 -2
  1382. data/ext/couchbase/couchbase/geo_polygon_query.hxx +40 -39
  1383. data/ext/couchbase/couchbase/get_all_buckets_options.hxx +9 -9
  1384. data/ext/couchbase/couchbase/get_all_datasets_analytics_options.hxx +25 -25
  1385. data/ext/couchbase/couchbase/get_all_indexes_analytics_options.hxx +26 -25
  1386. data/ext/couchbase/couchbase/get_all_query_indexes_options.hxx +27 -25
  1387. data/ext/couchbase/couchbase/get_all_replicas_options.hxx +49 -26
  1388. data/ext/couchbase/couchbase/get_all_scopes_options.hxx +9 -9
  1389. data/ext/couchbase/couchbase/get_all_search_indexes_options.hxx +9 -9
  1390. data/ext/couchbase/couchbase/get_and_lock_options.hxx +25 -24
  1391. data/ext/couchbase/couchbase/get_and_touch_options.hxx +25 -24
  1392. data/ext/couchbase/couchbase/get_any_replica_options.hxx +49 -26
  1393. data/ext/couchbase/couchbase/get_bucket_options.hxx +9 -9
  1394. data/ext/couchbase/couchbase/get_indexed_search_index_options.hxx +9 -9
  1395. data/ext/couchbase/couchbase/get_links_analytics_options.hxx +74 -74
  1396. data/ext/couchbase/couchbase/get_options.hxx +63 -60
  1397. data/ext/couchbase/couchbase/get_pending_mutations_analytics_options.hxx +30 -28
  1398. data/ext/couchbase/couchbase/get_replica_result.hxx +79 -75
  1399. data/ext/couchbase/couchbase/get_result.hxx +86 -80
  1400. data/ext/couchbase/couchbase/get_search_index_options.hxx +9 -9
  1401. data/ext/couchbase/couchbase/highlight_style.hxx +14 -14
  1402. data/ext/couchbase/couchbase/increment_options.hxx +94 -91
  1403. data/ext/couchbase/couchbase/insert_options.hxx +62 -59
  1404. data/ext/couchbase/couchbase/ip_protocol.hxx +3 -3
  1405. data/ext/couchbase/couchbase/logger.hxx +51 -0
  1406. data/ext/couchbase/couchbase/lookup_in_all_replicas_options.hxx +54 -43
  1407. data/ext/couchbase/couchbase/lookup_in_any_replica_options.hxx +54 -44
  1408. data/ext/couchbase/couchbase/lookup_in_options.hxx +40 -40
  1409. data/ext/couchbase/couchbase/lookup_in_replica_result.hxx +38 -35
  1410. data/ext/couchbase/couchbase/lookup_in_result.hxx +222 -216
  1411. data/ext/couchbase/couchbase/lookup_in_specs.hxx +101 -101
  1412. data/ext/couchbase/couchbase/management/analytics_dataset.hxx +16 -16
  1413. data/ext/couchbase/couchbase/management/analytics_index.hxx +16 -16
  1414. data/ext/couchbase/couchbase/management/analytics_link.hxx +193 -189
  1415. data/ext/couchbase/couchbase/management/bucket_settings.hxx +91 -75
  1416. data/ext/couchbase/couchbase/management/collection_spec.hxx +4 -4
  1417. data/ext/couchbase/couchbase/management/query_index.hxx +10 -10
  1418. data/ext/couchbase/couchbase/management/scope_spec.hxx +2 -2
  1419. data/ext/couchbase/couchbase/management/search_index.hxx +9 -9
  1420. data/ext/couchbase/couchbase/match_all_query.hxx +10 -9
  1421. data/ext/couchbase/couchbase/match_none_query.hxx +10 -9
  1422. data/ext/couchbase/couchbase/match_operator.hxx +15 -14
  1423. data/ext/couchbase/couchbase/match_phrase_query.hxx +70 -65
  1424. data/ext/couchbase/couchbase/match_query.hxx +115 -114
  1425. data/ext/couchbase/couchbase/metrics/meter.hxx +33 -30
  1426. data/ext/couchbase/couchbase/metrics/otel_meter.hxx +86 -74
  1427. data/ext/couchbase/couchbase/metrics_options.hxx +34 -34
  1428. data/ext/couchbase/couchbase/mutate_in_options.hxx +160 -149
  1429. data/ext/couchbase/couchbase/mutate_in_result.hxx +130 -123
  1430. data/ext/couchbase/couchbase/mutate_in_specs.hxx +473 -454
  1431. data/ext/couchbase/couchbase/mutation_result.hxx +32 -32
  1432. data/ext/couchbase/couchbase/mutation_state.hxx +35 -34
  1433. data/ext/couchbase/couchbase/mutation_token.hxx +78 -78
  1434. data/ext/couchbase/couchbase/network_options.hxx +101 -72
  1435. data/ext/couchbase/couchbase/numeric_range.hxx +26 -26
  1436. data/ext/couchbase/couchbase/numeric_range_facet.hxx +20 -20
  1437. data/ext/couchbase/couchbase/numeric_range_facet_result.hxx +14 -14
  1438. data/ext/couchbase/couchbase/numeric_range_query.hxx +97 -95
  1439. data/ext/couchbase/couchbase/password_authenticator.hxx +17 -17
  1440. data/ext/couchbase/couchbase/pause_ingest_search_index_options.hxx +11 -10
  1441. data/ext/couchbase/couchbase/persist_to.hxx +45 -44
  1442. data/ext/couchbase/couchbase/phrase_query.hxx +69 -65
  1443. data/ext/couchbase/couchbase/ping_options.hxx +55 -54
  1444. data/ext/couchbase/couchbase/ping_result.hxx +79 -77
  1445. data/ext/couchbase/couchbase/prefix_query.hxx +43 -40
  1446. data/ext/couchbase/couchbase/prepend_options.hxx +51 -47
  1447. data/ext/couchbase/couchbase/query_index_manager.hxx +207 -199
  1448. data/ext/couchbase/couchbase/query_meta_data.hxx +120 -120
  1449. data/ext/couchbase/couchbase/query_metrics.hxx +135 -133
  1450. data/ext/couchbase/couchbase/query_options.hxx +518 -493
  1451. data/ext/couchbase/couchbase/query_profile.hxx +29 -26
  1452. data/ext/couchbase/couchbase/query_result.hxx +56 -55
  1453. data/ext/couchbase/couchbase/query_scan_consistency.hxx +24 -21
  1454. data/ext/couchbase/couchbase/query_status.hxx +10 -10
  1455. data/ext/couchbase/couchbase/query_string_query.hxx +34 -29
  1456. data/ext/couchbase/couchbase/query_warning.hxx +75 -71
  1457. data/ext/couchbase/couchbase/read_preference.hxx +58 -0
  1458. data/ext/couchbase/couchbase/regexp_query.hxx +40 -39
  1459. data/ext/couchbase/couchbase/remove_options.hxx +51 -47
  1460. data/ext/couchbase/couchbase/replace_link_analytics_options.hxx +25 -25
  1461. data/ext/couchbase/couchbase/replace_options.hxx +112 -104
  1462. data/ext/couchbase/couchbase/replicate_to.hxx +28 -28
  1463. data/ext/couchbase/couchbase/result.hxx +28 -28
  1464. data/ext/couchbase/couchbase/resume_ingest_search_index_options.hxx +11 -10
  1465. data/ext/couchbase/couchbase/retry_action.hxx +10 -10
  1466. data/ext/couchbase/couchbase/retry_reason.hxx +53 -51
  1467. data/ext/couchbase/couchbase/retry_request.hxx +7 -7
  1468. data/ext/couchbase/couchbase/retry_strategy.hxx +4 -4
  1469. data/ext/couchbase/couchbase/scan_options.hxx +169 -0
  1470. data/ext/couchbase/couchbase/scan_result.hxx +145 -0
  1471. data/ext/couchbase/couchbase/scan_result_item.hxx +172 -0
  1472. data/ext/couchbase/couchbase/scan_type.hxx +328 -0
  1473. data/ext/couchbase/couchbase/scope.hxx +164 -157
  1474. data/ext/couchbase/couchbase/scope_search_index_manager.hxx +263 -238
  1475. data/ext/couchbase/couchbase/search_date_range.hxx +32 -29
  1476. data/ext/couchbase/couchbase/search_facet.hxx +25 -25
  1477. data/ext/couchbase/couchbase/search_facet_result.hxx +11 -11
  1478. data/ext/couchbase/couchbase/search_geo_distance_units.hxx +11 -1
  1479. data/ext/couchbase/couchbase/search_index_manager.hxx +261 -238
  1480. data/ext/couchbase/couchbase/search_meta_data.hxx +37 -37
  1481. data/ext/couchbase/couchbase/search_metrics.hxx +84 -83
  1482. data/ext/couchbase/couchbase/search_numeric_range.hxx +32 -32
  1483. data/ext/couchbase/couchbase/search_options.hxx +449 -435
  1484. data/ext/couchbase/couchbase/search_query.hxx +32 -30
  1485. data/ext/couchbase/couchbase/search_request.hxx +69 -68
  1486. data/ext/couchbase/couchbase/search_result.hxx +29 -26
  1487. data/ext/couchbase/couchbase/search_row.hxx +52 -52
  1488. data/ext/couchbase/couchbase/search_row_location.hxx +20 -20
  1489. data/ext/couchbase/couchbase/search_row_locations.hxx +39 -38
  1490. data/ext/couchbase/couchbase/search_scan_consistency.hxx +11 -10
  1491. data/ext/couchbase/couchbase/search_sort.hxx +20 -20
  1492. data/ext/couchbase/couchbase/search_sort_field.hxx +77 -71
  1493. data/ext/couchbase/couchbase/search_sort_field_missing.hxx +2 -2
  1494. data/ext/couchbase/couchbase/search_sort_field_mode.hxx +3 -3
  1495. data/ext/couchbase/couchbase/search_sort_field_type.hxx +4 -4
  1496. data/ext/couchbase/couchbase/search_sort_geo_distance.hxx +41 -41
  1497. data/ext/couchbase/couchbase/search_sort_id.hxx +23 -23
  1498. data/ext/couchbase/couchbase/search_sort_score.hxx +23 -23
  1499. data/ext/couchbase/couchbase/search_term_range.hxx +17 -17
  1500. data/ext/couchbase/couchbase/security_options.hxx +50 -50
  1501. data/ext/couchbase/couchbase/service_type.hxx +34 -34
  1502. data/ext/couchbase/couchbase/store_semantics.hxx +28 -28
  1503. data/ext/couchbase/couchbase/subdoc/array_add_unique.hxx +54 -54
  1504. data/ext/couchbase/couchbase/subdoc/array_append.hxx +40 -40
  1505. data/ext/couchbase/couchbase/subdoc/array_insert.hxx +41 -41
  1506. data/ext/couchbase/couchbase/subdoc/array_prepend.hxx +41 -41
  1507. data/ext/couchbase/couchbase/subdoc/count.hxx +24 -24
  1508. data/ext/couchbase/couchbase/subdoc/counter.hxx +41 -41
  1509. data/ext/couchbase/couchbase/subdoc/exists.hxx +24 -24
  1510. data/ext/couchbase/couchbase/subdoc/get.hxx +45 -29
  1511. data/ext/couchbase/couchbase/subdoc/insert.hxx +70 -54
  1512. data/ext/couchbase/couchbase/subdoc/lookup_in_macro.hxx +13 -12
  1513. data/ext/couchbase/couchbase/subdoc/mutate_in_macro.hxx +7 -2
  1514. data/ext/couchbase/couchbase/subdoc/remove.hxx +24 -24
  1515. data/ext/couchbase/couchbase/subdoc/replace.hxx +55 -39
  1516. data/ext/couchbase/couchbase/subdoc/upsert.hxx +70 -54
  1517. data/ext/couchbase/couchbase/term_facet.hxx +16 -16
  1518. data/ext/couchbase/couchbase/term_facet_result.hxx +14 -14
  1519. data/ext/couchbase/couchbase/term_query.hxx +107 -104
  1520. data/ext/couchbase/couchbase/term_range_query.hxx +99 -96
  1521. data/ext/couchbase/couchbase/timeout_options.hxx +118 -112
  1522. data/ext/couchbase/couchbase/tls_verify_mode.hxx +2 -2
  1523. data/ext/couchbase/couchbase/touch_options.hxx +25 -24
  1524. data/ext/couchbase/couchbase/tracing/otel_tracer.hxx +45 -44
  1525. data/ext/couchbase/couchbase/tracing/request_span.hxx +34 -34
  1526. data/ext/couchbase/couchbase/tracing/request_tracer.hxx +27 -25
  1527. data/ext/couchbase/couchbase/tracing_options.hxx +147 -142
  1528. data/ext/couchbase/couchbase/transactions/async_attempt_context.hxx +149 -115
  1529. data/ext/couchbase/couchbase/transactions/attempt_context.hxx +146 -95
  1530. data/ext/couchbase/couchbase/transactions/transaction_get_result.hxx +52 -80
  1531. data/ext/couchbase/couchbase/transactions/transaction_keyspace.hxx +33 -29
  1532. data/ext/couchbase/couchbase/transactions/transaction_options.hxx +101 -96
  1533. data/ext/couchbase/couchbase/transactions/transaction_query_options.hxx +228 -223
  1534. data/ext/couchbase/couchbase/transactions/transaction_query_result.hxx +11 -12
  1535. data/ext/couchbase/couchbase/transactions/transaction_result.hxx +2 -3
  1536. data/ext/couchbase/couchbase/transactions/transactions_cleanup_config.hxx +105 -104
  1537. data/ext/couchbase/couchbase/transactions/transactions_config.hxx +191 -187
  1538. data/ext/couchbase/couchbase/transactions/transactions_query_config.hxx +32 -32
  1539. data/ext/couchbase/couchbase/transactions.hxx +56 -37
  1540. data/ext/couchbase/couchbase/unfreeze_plan_search_index_options.hxx +11 -10
  1541. data/ext/couchbase/couchbase/unlock_options.hxx +25 -24
  1542. data/ext/couchbase/couchbase/update_bucket_options.hxx +9 -9
  1543. data/ext/couchbase/couchbase/update_collection_options.hxx +35 -34
  1544. data/ext/couchbase/couchbase/upsert_options.hxx +85 -80
  1545. data/ext/couchbase/couchbase/upsert_search_index_options.hxx +9 -9
  1546. data/ext/couchbase/couchbase/vector_query.hxx +82 -62
  1547. data/ext/couchbase/couchbase/vector_search.hxx +51 -47
  1548. data/ext/couchbase/couchbase/vector_search_options.hxx +45 -41
  1549. data/ext/couchbase/couchbase/wan_development_configuration_profile.hxx +13 -13
  1550. data/ext/couchbase/couchbase/watch_query_indexes_options.hxx +41 -41
  1551. data/ext/couchbase/couchbase/wildcard_query.hxx +42 -41
  1552. data/ext/couchbase/third_party/expected/include/tl/expected.hpp +1746 -1584
  1553. data/ext/couchbase/third_party/jsonsl/jsonsl.c +2664 -2638
  1554. data/ext/couchbase/third_party/jsonsl/jsonsl.h +359 -342
  1555. data/ext/couchbase.cxx +43 -9548
  1556. data/ext/extconf.rb +5 -0
  1557. data/ext/rcb_analytics.cxx +1195 -0
  1558. data/ext/rcb_analytics.hxx +29 -0
  1559. data/ext/rcb_backend.cxx +530 -0
  1560. data/ext/rcb_backend.hxx +46 -0
  1561. data/ext/rcb_buckets.cxx +624 -0
  1562. data/ext/rcb_buckets.hxx +29 -0
  1563. data/ext/rcb_collections.cxx +377 -0
  1564. data/ext/rcb_collections.hxx +29 -0
  1565. data/ext/rcb_crud.cxx +1544 -0
  1566. data/ext/rcb_crud.hxx +29 -0
  1567. data/ext/rcb_diagnostics.cxx +264 -0
  1568. data/ext/rcb_diagnostics.hxx +29 -0
  1569. data/ext/rcb_exceptions.cxx +963 -0
  1570. data/ext/rcb_exceptions.hxx +111 -0
  1571. data/ext/rcb_extras.cxx +394 -0
  1572. data/ext/rcb_extras.hxx +29 -0
  1573. data/ext/rcb_logger.cxx +319 -0
  1574. data/ext/rcb_logger.hxx +36 -0
  1575. data/ext/rcb_multi.cxx +343 -0
  1576. data/ext/rcb_multi.hxx +29 -0
  1577. data/ext/rcb_query.cxx +1316 -0
  1578. data/ext/rcb_query.hxx +29 -0
  1579. data/ext/rcb_range_scan.cxx +358 -0
  1580. data/ext/rcb_range_scan.hxx +29 -0
  1581. data/ext/rcb_search.cxx +1216 -0
  1582. data/ext/rcb_search.hxx +29 -0
  1583. data/ext/rcb_users.cxx +636 -0
  1584. data/ext/rcb_users.hxx +29 -0
  1585. data/ext/rcb_utils.cxx +590 -0
  1586. data/ext/rcb_utils.hxx +564 -0
  1587. data/ext/rcb_version.cxx +137 -0
  1588. data/ext/rcb_version.hxx +34 -0
  1589. data/ext/rcb_views.cxx +485 -0
  1590. data/ext/rcb_views.hxx +29 -0
  1591. data/lib/active_support/cache/couchbase_store.rb +4 -1
  1592. data/lib/couchbase/analytics_options.rb +2 -0
  1593. data/lib/couchbase/authenticator.rb +2 -0
  1594. data/lib/couchbase/binary_collection.rb +2 -0
  1595. data/lib/couchbase/binary_collection_options.rb +2 -0
  1596. data/lib/couchbase/bucket.rb +2 -0
  1597. data/lib/couchbase/cluster.rb +2 -0
  1598. data/lib/couchbase/collection.rb +3 -1
  1599. data/lib/couchbase/collection_options.rb +2 -0
  1600. data/lib/couchbase/config_profiles.rb +2 -0
  1601. data/lib/couchbase/configuration.rb +2 -0
  1602. data/lib/couchbase/datastructures/couchbase_list.rb +4 -4
  1603. data/lib/couchbase/datastructures/couchbase_map.rb +4 -4
  1604. data/lib/couchbase/datastructures/couchbase_queue.rb +4 -4
  1605. data/lib/couchbase/datastructures/couchbase_set.rb +4 -4
  1606. data/lib/couchbase/datastructures.rb +2 -0
  1607. data/lib/couchbase/diagnostics.rb +2 -0
  1608. data/lib/couchbase/errors.rb +46 -8
  1609. data/lib/couchbase/json_transcoder.rb +2 -0
  1610. data/lib/couchbase/key_value_scan.rb +2 -0
  1611. data/lib/couchbase/logger.rb +2 -0
  1612. data/lib/couchbase/management/analytics_index_manager.rb +2 -0
  1613. data/lib/couchbase/management/bucket_manager.rb +2 -0
  1614. data/lib/couchbase/management/collection_manager.rb +2 -0
  1615. data/lib/couchbase/management/collection_query_index_manager.rb +2 -0
  1616. data/lib/couchbase/management/query_index_manager.rb +2 -0
  1617. data/lib/couchbase/management/scope_search_index_manager.rb +2 -0
  1618. data/lib/couchbase/management/search_index_manager.rb +2 -0
  1619. data/lib/couchbase/management/user_manager.rb +2 -0
  1620. data/lib/couchbase/management/view_index_manager.rb +2 -0
  1621. data/lib/couchbase/management.rb +2 -0
  1622. data/lib/couchbase/mutation_state.rb +2 -0
  1623. data/lib/couchbase/options.rb +9 -0
  1624. data/lib/couchbase/protostellar/bucket.rb +4 -0
  1625. data/lib/couchbase/protostellar/cluster.rb +8 -0
  1626. data/lib/couchbase/protostellar/request_generator/kv.rb +1 -1
  1627. data/lib/couchbase/query_options.rb +2 -0
  1628. data/lib/couchbase/railtie.rb +2 -0
  1629. data/lib/couchbase/raw_binary_transcoder.rb +2 -0
  1630. data/lib/couchbase/raw_json_transcoder.rb +2 -0
  1631. data/lib/couchbase/raw_string_transcoder.rb +2 -0
  1632. data/lib/couchbase/scope.rb +2 -0
  1633. data/lib/couchbase/search_options.rb +91 -63
  1634. data/lib/couchbase/subdoc.rb +7 -4
  1635. data/lib/couchbase/transcoder_flags.rb +2 -0
  1636. data/lib/couchbase/utils/generic_logger_adapter.rb +3 -1
  1637. data/lib/couchbase/utils/stdlib_logger_adapter.rb +2 -0
  1638. data/lib/couchbase/utils/time.rb +3 -1
  1639. data/lib/couchbase/utils.rb +2 -0
  1640. data/lib/couchbase/version.rb +3 -1
  1641. data/lib/couchbase/view_options.rb +2 -0
  1642. data/lib/couchbase.rb +2 -0
  1643. data/lib/rails/generators/couchbase/config/config_generator.rb +2 -0
  1644. metadata +861 -850
  1645. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/any_completion_executor.hpp +0 -342
  1646. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/any_completion_handler.hpp +0 -823
  1647. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/any_io_executor.hpp +0 -359
  1648. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/append.hpp +0 -78
  1649. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/as_tuple.hpp +0 -139
  1650. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/associated_allocator.hpp +0 -233
  1651. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/associated_cancellation_slot.hpp +0 -238
  1652. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/associated_executor.hpp +0 -253
  1653. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/associated_immediate_executor.hpp +0 -297
  1654. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/async_result.hpp +0 -1671
  1655. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_datagram_socket.hpp +0 -1396
  1656. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_deadline_timer.hpp +0 -715
  1657. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_file.hpp +0 -829
  1658. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_io_object.hpp +0 -290
  1659. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_random_access_file.hpp +0 -701
  1660. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_raw_socket.hpp +0 -1387
  1661. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_readable_pipe.hpp +0 -635
  1662. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_seq_packet_socket.hpp +0 -835
  1663. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_serial_port.hpp +0 -1000
  1664. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_signal_set.hpp +0 -651
  1665. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_socket.hpp +0 -1947
  1666. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_socket_acceptor.hpp +0 -2755
  1667. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_socket_iostream.hpp +0 -407
  1668. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_socket_streambuf.hpp +0 -687
  1669. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_stream_file.hpp +0 -754
  1670. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_stream_socket.hpp +0 -1189
  1671. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_streambuf.hpp +0 -452
  1672. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_streambuf_fwd.hpp +0 -36
  1673. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_waitable_timer.hpp +0 -833
  1674. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/basic_writable_pipe.hpp +0 -631
  1675. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/bind_allocator.hpp +0 -733
  1676. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/bind_cancellation_slot.hpp +0 -736
  1677. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/bind_executor.hpp +0 -781
  1678. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/bind_immediate_executor.hpp +0 -736
  1679. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/buffer.hpp +0 -2909
  1680. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/buffer_registration.hpp +0 -328
  1681. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/buffered_read_stream.hpp +0 -286
  1682. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/buffered_stream.hpp +0 -308
  1683. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/buffered_write_stream.hpp +0 -278
  1684. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/buffers_iterator.hpp +0 -521
  1685. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/cancellation_signal.hpp +0 -305
  1686. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/cancellation_state.hpp +0 -235
  1687. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/cancellation_type.hpp +0 -174
  1688. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/co_spawn.hpp +0 -523
  1689. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/compose.hpp +0 -531
  1690. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/connect.hpp +0 -1207
  1691. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/consign.hpp +0 -88
  1692. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/defer.hpp +0 -222
  1693. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/deferred.hpp +0 -802
  1694. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detached.hpp +0 -113
  1695. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/array.hpp +0 -38
  1696. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/array_fwd.hpp +0 -34
  1697. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/atomic_count.hpp +0 -67
  1698. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/base_from_cancellation_state.hpp +0 -163
  1699. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/base_from_completion_cond.hpp +0 -69
  1700. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/bind_handler.hpp +0 -1145
  1701. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/blocking_executor_op.hpp +0 -108
  1702. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/buffer_sequence_adapter.hpp +0 -841
  1703. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/bulk_executor_op.hpp +0 -89
  1704. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/chrono.hpp +0 -66
  1705. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/completion_handler.hpp +0 -88
  1706. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/composed_work.hpp +0 -328
  1707. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/config.hpp +0 -2314
  1708. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/consuming_buffers.hpp +0 -451
  1709. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/cstddef.hpp +0 -31
  1710. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/cstdint.hpp +0 -62
  1711. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/deadline_timer_service.hpp +0 -335
  1712. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/descriptor_read_op.hpp +0 -188
  1713. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/descriptor_write_op.hpp +0 -187
  1714. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/event.hpp +0 -48
  1715. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/exception.hpp +0 -40
  1716. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/executor_function.hpp +0 -204
  1717. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/executor_op.hpp +0 -85
  1718. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/fenced_block.hpp +0 -80
  1719. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/functional.hpp +0 -44
  1720. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/future.hpp +0 -33
  1721. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/gcc_arm_fenced_block.hpp +0 -91
  1722. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/gcc_hppa_fenced_block.hpp +0 -68
  1723. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/gcc_sync_fenced_block.hpp +0 -65
  1724. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/gcc_x86_fenced_block.hpp +0 -99
  1725. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/global.hpp +0 -52
  1726. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/handler_alloc_helpers.hpp +0 -288
  1727. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/handler_invoke_helpers.hpp +0 -80
  1728. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/handler_tracking.hpp +0 -264
  1729. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/handler_type_requirements.hpp +0 -559
  1730. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/handler_work.hpp +0 -565
  1731. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/handler_tracking.ipp +0 -398
  1732. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/io_uring_descriptor_service.ipp +0 -205
  1733. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/io_uring_socket_service_base.ipp +0 -249
  1734. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/reactive_descriptor_service.ipp +0 -230
  1735. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/reactive_socket_service_base.ipp +0 -310
  1736. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/resolver_service_base.ipp +0 -158
  1737. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/service_registry.hpp +0 -94
  1738. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/strand_executor_service.hpp +0 -367
  1739. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/strand_service.hpp +0 -87
  1740. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/throw_error.ipp +0 -70
  1741. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/timer_queue_ptime.ipp +0 -97
  1742. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/win_iocp_io_context.hpp +0 -120
  1743. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/win_iocp_io_context.ipp +0 -615
  1744. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/win_iocp_socket_service_base.ipp +0 -821
  1745. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/impl/winrt_ssocket_service_base.ipp +0 -626
  1746. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/initiate_defer.hpp +0 -252
  1747. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/initiate_dispatch.hpp +0 -229
  1748. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/initiate_post.hpp +0 -252
  1749. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_object_impl.hpp +0 -181
  1750. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_descriptor_read_at_op.hpp +0 -195
  1751. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_descriptor_read_op.hpp +0 -190
  1752. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_descriptor_service.hpp +0 -687
  1753. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_descriptor_write_at_op.hpp +0 -189
  1754. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_descriptor_write_op.hpp +0 -185
  1755. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_null_buffers_op.hpp +0 -115
  1756. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_accept_op.hpp +0 -285
  1757. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_connect_op.hpp +0 -141
  1758. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_recv_op.hpp +0 -205
  1759. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_recvfrom_op.hpp +0 -206
  1760. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_recvmsg_op.hpp +0 -192
  1761. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_send_op.hpp +0 -191
  1762. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_sendto_op.hpp +0 -194
  1763. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_service.hpp +0 -631
  1764. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_socket_service_base.hpp +0 -663
  1765. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/io_uring_wait_op.hpp +0 -113
  1766. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/is_buffer_sequence.hpp +0 -338
  1767. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/limits.hpp +0 -26
  1768. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/macos_fenced_block.hpp +0 -62
  1769. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/memory.hpp +0 -167
  1770. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/mutex.hpp +0 -48
  1771. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/non_const_lvalue.hpp +0 -54
  1772. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/null_socket_service.hpp +0 -519
  1773. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_descriptor_service.hpp +0 -566
  1774. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_null_buffers_op.hpp +0 -132
  1775. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_accept_op.hpp +0 -328
  1776. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_connect_op.hpp +0 -163
  1777. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_recv_op.hpp +0 -198
  1778. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_recvfrom_op.hpp +0 -204
  1779. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_recvmsg_op.hpp +0 -185
  1780. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_send_op.hpp +0 -202
  1781. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_sendto_op.hpp +0 -195
  1782. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_service.hpp +0 -635
  1783. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_socket_service_base.hpp +0 -750
  1784. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/reactive_wait_op.hpp +0 -132
  1785. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/recycling_allocator.hpp +0 -105
  1786. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/regex_fwd.hpp +0 -44
  1787. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/resolve_endpoint_op.hpp +0 -141
  1788. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/resolve_query_op.hpp +0 -151
  1789. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/resolver_service.hpp +0 -147
  1790. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/service_registry.hpp +0 -164
  1791. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/signal_handler.hpp +0 -90
  1792. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/signal_set_service.hpp +0 -292
  1793. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/solaris_fenced_block.hpp +0 -62
  1794. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/static_mutex.hpp +0 -52
  1795. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/std_event.hpp +0 -188
  1796. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/std_fenced_block.hpp +0 -62
  1797. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/std_global.hpp +0 -70
  1798. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/std_mutex.hpp +0 -73
  1799. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/std_static_mutex.hpp +0 -81
  1800. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/std_thread.hpp +0 -71
  1801. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/strand_executor_service.hpp +0 -173
  1802. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/thread.hpp +0 -60
  1803. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/thread_info_base.hpp +0 -260
  1804. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/timer_queue_ptime.hpp +0 -103
  1805. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/type_traits.hpp +0 -164
  1806. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/utility.hpp +0 -83
  1807. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/variadic_templates.hpp +0 -294
  1808. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/wait_handler.hpp +0 -90
  1809. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_fenced_block.hpp +0 -90
  1810. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_handle_read_op.hpp +0 -120
  1811. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_handle_service.hpp +0 -431
  1812. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_handle_write_op.hpp +0 -115
  1813. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_null_buffers_op.hpp +0 -130
  1814. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_overlapped_op.hpp +0 -101
  1815. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_overlapped_ptr.hpp +0 -171
  1816. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_accept_op.hpp +0 -344
  1817. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_connect_op.hpp +0 -139
  1818. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_recv_op.hpp +0 -127
  1819. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_recvfrom_op.hpp +0 -136
  1820. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_recvmsg_op.hpp +0 -128
  1821. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_send_op.hpp +0 -121
  1822. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_service.hpp +0 -683
  1823. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_socket_service_base.hpp +0 -830
  1824. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_iocp_wait_op.hpp +0 -131
  1825. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/win_object_handle_service.hpp +0 -195
  1826. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_resolve_op.hpp +0 -126
  1827. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_resolver_service.hpp +0 -212
  1828. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_socket_connect_op.hpp +0 -99
  1829. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_socket_recv_op.hpp +0 -120
  1830. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_socket_send_op.hpp +0 -111
  1831. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_ssocket_service.hpp +0 -250
  1832. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/winrt_ssocket_service_base.hpp +0 -362
  1833. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/work_dispatcher.hpp +0 -157
  1834. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/detail/wrapped_handler.hpp +0 -327
  1835. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/dispatch.hpp +0 -202
  1836. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/error.hpp +0 -391
  1837. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/error_code.hpp +0 -202
  1838. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/allocator.hpp +0 -356
  1839. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/any_executor.hpp +0 -2723
  1840. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/bad_executor.hpp +0 -47
  1841. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/blocking.hpp +0 -1600
  1842. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/blocking_adaptation.hpp +0 -1257
  1843. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/bulk_execute.hpp +0 -402
  1844. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/bulk_guarantee.hpp +0 -1252
  1845. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/connect.hpp +0 -494
  1846. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/context.hpp +0 -244
  1847. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/context_as.hpp +0 -232
  1848. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/detail/as_invocable.hpp +0 -152
  1849. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/detail/as_operation.hpp +0 -109
  1850. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/detail/as_receiver.hpp +0 -128
  1851. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/detail/bulk_sender.hpp +0 -261
  1852. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/detail/submit_receiver.hpp +0 -233
  1853. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/detail/void_receiver.hpp +0 -90
  1854. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/execute.hpp +0 -290
  1855. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/executor.hpp +0 -262
  1856. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/impl/bad_executor.ipp +0 -40
  1857. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/impl/receiver_invocation_error.ipp +0 -36
  1858. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/invocable_archetype.hpp +0 -71
  1859. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/mapping.hpp +0 -1160
  1860. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/occupancy.hpp +0 -237
  1861. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/operation_state.hpp +0 -99
  1862. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/outstanding_work.hpp +0 -900
  1863. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/prefer_only.hpp +0 -331
  1864. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/receiver.hpp +0 -285
  1865. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/receiver_invocation_error.hpp +0 -48
  1866. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/relationship.hpp +0 -898
  1867. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/schedule.hpp +0 -292
  1868. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/scheduler.hpp +0 -91
  1869. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/sender.hpp +0 -316
  1870. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/set_done.hpp +0 -255
  1871. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/set_error.hpp +0 -255
  1872. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/set_value.hpp +0 -488
  1873. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/start.hpp +0 -252
  1874. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution/submit.hpp +0 -455
  1875. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution.hpp +0 -48
  1876. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/execution_context.hpp +0 -412
  1877. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/executor.hpp +0 -347
  1878. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/executor_work_guard.hpp +0 -367
  1879. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/as_single.hpp +0 -136
  1880. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/awaitable_operators.hpp +0 -536
  1881. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/basic_channel.hpp +0 -491
  1882. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/basic_concurrent_channel.hpp +0 -491
  1883. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/cancellation_condition.hpp +0 -155
  1884. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/channel.hpp +0 -70
  1885. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/channel_error.hpp +0 -84
  1886. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/channel_traits.hpp +0 -301
  1887. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/co_composed.hpp +0 -144
  1888. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/concurrent_channel.hpp +0 -70
  1889. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_handler.hpp +0 -80
  1890. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_message.hpp +0 -129
  1891. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_operation.hpp +0 -284
  1892. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_payload.hpp +0 -139
  1893. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_receive_op.hpp +0 -120
  1894. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_send_functions.hpp +0 -144
  1895. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_send_op.hpp +0 -148
  1896. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/channel_service.hpp +0 -677
  1897. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/detail/impl/channel_service.hpp +0 -612
  1898. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/as_single.hpp +0 -239
  1899. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/channel_error.ipp +0 -61
  1900. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/co_composed.hpp +0 -1175
  1901. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/coro.hpp +0 -1222
  1902. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/parallel_group.hpp +0 -792
  1903. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/promise.hpp +0 -254
  1904. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/impl/use_promise.hpp +0 -66
  1905. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/parallel_group.hpp +0 -461
  1906. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/use_coro.hpp +0 -195
  1907. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/experimental/use_promise.hpp +0 -111
  1908. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/generic/basic_endpoint.hpp +0 -193
  1909. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/generic/datagram_protocol.hpp +0 -123
  1910. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/generic/raw_protocol.hpp +0 -121
  1911. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/generic/seq_packet_protocol.hpp +0 -122
  1912. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/generic/stream_protocol.hpp +0 -127
  1913. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/handler_alloc_hook.hpp +0 -104
  1914. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/handler_invoke_hook.hpp +0 -111
  1915. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/high_resolution_timer.hpp +0 -44
  1916. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/any_completion_executor.ipp +0 -130
  1917. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/any_io_executor.ipp +0 -141
  1918. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/append.hpp +0 -225
  1919. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/as_tuple.hpp +0 -320
  1920. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/awaitable.hpp +0 -1195
  1921. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/buffered_read_stream.hpp +0 -527
  1922. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/buffered_write_stream.hpp +0 -507
  1923. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/co_spawn.hpp +0 -437
  1924. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/connect.hpp +0 -959
  1925. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/consign.hpp +0 -202
  1926. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/deferred.hpp +0 -156
  1927. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/detached.hpp +0 -130
  1928. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/error.ipp +0 -128
  1929. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/error_code.ipp +0 -206
  1930. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/execution_context.hpp +0 -109
  1931. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/executor.hpp +0 -300
  1932. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/executor.ipp +0 -43
  1933. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/handler_alloc_hook.ipp +0 -62
  1934. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/io_context.hpp +0 -450
  1935. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/multiple_exceptions.ipp +0 -49
  1936. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/prepend.hpp +0 -225
  1937. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/read.hpp +0 -1276
  1938. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/read_at.hpp +0 -774
  1939. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/read_until.hpp +0 -3455
  1940. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/redirect_error.hpp +0 -634
  1941. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/spawn.hpp +0 -1616
  1942. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/src.hpp +0 -96
  1943. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/system_context.hpp +0 -34
  1944. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/system_context.ipp +0 -92
  1945. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/system_executor.hpp +0 -185
  1946. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/thread_pool.hpp +0 -354
  1947. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/use_awaitable.hpp +0 -301
  1948. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/use_future.hpp +0 -1053
  1949. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/write.hpp +0 -1153
  1950. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/impl/write_at.hpp +0 -687
  1951. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/io_context.hpp +0 -1534
  1952. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/io_context_strand.hpp +0 -388
  1953. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address.hpp +0 -290
  1954. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address_v4.hpp +0 -430
  1955. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address_v4_iterator.hpp +0 -162
  1956. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address_v4_range.hpp +0 -134
  1957. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address_v6.hpp +0 -416
  1958. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address_v6_iterator.hpp +0 -183
  1959. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/address_v6_range.hpp +0 -129
  1960. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/bad_address_cast.hpp +0 -63
  1961. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/basic_endpoint.hpp +0 -291
  1962. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/basic_resolver.hpp +0 -1142
  1963. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/basic_resolver_iterator.hpp +0 -192
  1964. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/basic_resolver_results.hpp +0 -311
  1965. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/detail/endpoint.hpp +0 -141
  1966. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/detail/impl/endpoint.ipp +0 -199
  1967. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/icmp.hpp +0 -115
  1968. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/impl/address.ipp +0 -239
  1969. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/impl/address_v4.ipp +0 -210
  1970. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/impl/address_v6.ipp +0 -350
  1971. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/impl/network_v4.ipp +0 -218
  1972. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/impl/network_v6.ipp +0 -187
  1973. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/network_v4.hpp +0 -261
  1974. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/network_v6.hpp +0 -235
  1975. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/tcp.hpp +0 -155
  1976. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ip/udp.hpp +0 -111
  1977. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/is_applicable_property.hpp +0 -61
  1978. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/is_contiguous_iterator.hpp +0 -45
  1979. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/local/basic_endpoint.hpp +0 -247
  1980. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/local/datagram_protocol.hpp +0 -80
  1981. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/local/seq_packet_protocol.hpp +0 -84
  1982. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/local/stream_protocol.hpp +0 -90
  1983. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/multiple_exceptions.hpp +0 -58
  1984. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/packaged_task.hpp +0 -126
  1985. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/placeholders.hpp +0 -151
  1986. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/posix/basic_descriptor.hpp +0 -781
  1987. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/posix/basic_stream_descriptor.hpp +0 -569
  1988. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/post.hpp +0 -218
  1989. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/prefer.hpp +0 -734
  1990. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/prepend.hpp +0 -78
  1991. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/query.hpp +0 -324
  1992. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/read.hpp +0 -1480
  1993. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/read_at.hpp +0 -795
  1994. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/read_until.hpp +0 -3166
  1995. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/recycling_allocator.hpp +0 -138
  1996. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/redirect_error.hpp +0 -66
  1997. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/registered_buffer.hpp +0 -356
  1998. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/require.hpp +0 -571
  1999. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/require_concept.hpp +0 -352
  2000. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/signal_set_base.hpp +0 -182
  2001. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/spawn.hpp +0 -906
  2002. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/context.hpp +0 -764
  2003. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/buffered_handshake_op.hpp +0 -119
  2004. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/engine.hpp +0 -173
  2005. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/handshake_op.hpp +0 -67
  2006. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/impl/engine.ipp +0 -381
  2007. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/impl/openssl_init.ipp +0 -169
  2008. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/io.hpp +0 -435
  2009. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/read_op.hpp +0 -72
  2010. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/shutdown_op.hpp +0 -69
  2011. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/stream_core.hpp +0 -221
  2012. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/detail/write_op.hpp +0 -76
  2013. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/error.hpp +0 -125
  2014. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/impl/context.ipp +0 -1321
  2015. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/impl/error.ipp +0 -124
  2016. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ssl/stream.hpp +0 -1073
  2017. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/steady_timer.hpp +0 -42
  2018. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/strand.hpp +0 -584
  2019. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/system_context.hpp +0 -90
  2020. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/system_error.hpp +0 -131
  2021. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/system_executor.hpp +0 -671
  2022. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/system_timer.hpp +0 -42
  2023. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/this_coro.hpp +0 -280
  2024. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/thread_pool.hpp +0 -1145
  2025. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/bulk_execute_free.hpp +0 -114
  2026. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/bulk_execute_member.hpp +0 -114
  2027. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/connect_free.hpp +0 -112
  2028. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/connect_member.hpp +0 -112
  2029. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/equality_comparable.hpp +0 -104
  2030. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/execute_free.hpp +0 -108
  2031. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/execute_member.hpp +0 -108
  2032. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/prefer_free.hpp +0 -108
  2033. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/prefer_member.hpp +0 -108
  2034. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/query_free.hpp +0 -108
  2035. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/query_member.hpp +0 -108
  2036. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/query_static_constexpr_member.hpp +0 -108
  2037. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/require_concept_free.hpp +0 -108
  2038. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/require_concept_member.hpp +0 -108
  2039. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/require_free.hpp +0 -108
  2040. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/require_member.hpp +0 -108
  2041. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/schedule_free.hpp +0 -108
  2042. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/schedule_member.hpp +0 -108
  2043. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/set_done_free.hpp +0 -108
  2044. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/set_done_member.hpp +0 -108
  2045. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/set_error_free.hpp +0 -112
  2046. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/set_error_member.hpp +0 -112
  2047. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/set_value_free.hpp +0 -234
  2048. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/set_value_member.hpp +0 -234
  2049. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/start_free.hpp +0 -108
  2050. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/start_member.hpp +0 -108
  2051. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/static_query.hpp +0 -108
  2052. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/static_require.hpp +0 -123
  2053. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/static_require_concept.hpp +0 -124
  2054. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/submit_free.hpp +0 -112
  2055. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/traits/submit_member.hpp +0 -112
  2056. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/ts/netfwd.hpp +0 -254
  2057. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/use_awaitable.hpp +0 -167
  2058. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/use_future.hpp +0 -163
  2059. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/uses_executor.hpp +0 -71
  2060. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/version.hpp +0 -23
  2061. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/windows/basic_object_handle.hpp +0 -493
  2062. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/windows/basic_overlapped_handle.hpp +0 -460
  2063. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/windows/basic_random_access_handle.hpp +0 -579
  2064. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/windows/basic_stream_handle.hpp +0 -561
  2065. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/windows/overlapped_ptr.hpp +0 -145
  2066. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/write.hpp +0 -1438
  2067. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio/write_at.hpp +0 -805
  2068. data/ext/cache/asio/a1d8afc0fa0ccceae5729647623b3f7fd6859548/asio/asio/include/asio.hpp +0 -216
  2069. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/CMakeLists.txt +0 -444
  2070. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/ChangeLog.rst +0 -5922
  2071. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/README.rst +0 -545
  2072. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/args.h +0 -234
  2073. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/chrono.h +0 -2208
  2074. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/color.h +0 -632
  2075. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/compile.h +0 -534
  2076. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/core.h +0 -2922
  2077. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/format-inl.h +0 -1662
  2078. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/format.h +0 -4510
  2079. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/os.h +0 -451
  2080. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/ostream.h +0 -209
  2081. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/printf.h +0 -667
  2082. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/ranges.h +0 -735
  2083. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/std.h +0 -465
  2084. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/include/fmt/xchar.h +0 -258
  2085. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/src/fmt.cc +0 -110
  2086. data/ext/cache/fmt/513ade7b9791ea53008d5320013a52e682a91501/fmt/src/os.cc +0 -398
  2087. data/ext/cache/llhttp/6862303abe6dfd515c1eb7f7cec05f29c92426e9/llhttp/CMakeLists.txt +0 -117
  2088. data/ext/cache/llhttp/6862303abe6dfd515c1eb7f7cec05f29c92426e9/llhttp/include/llhttp.h +0 -898
  2089. data/ext/cache/llhttp/6862303abe6dfd515c1eb7f7cec05f29c92426e9/llhttp/src/llhttp.c +0 -10102
  2090. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/CMakeLists.txt +0 -360
  2091. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/LICENSE +0 -26
  2092. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/async.h +0 -99
  2093. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/async_logger-inl.h +0 -90
  2094. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/async_logger.h +0 -68
  2095. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/cfg/argv.h +0 -44
  2096. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/cfg/env.h +0 -38
  2097. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/cfg/helpers-inl.h +0 -120
  2098. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/cfg/helpers.h +0 -29
  2099. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/common-inl.h +0 -82
  2100. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/common.h +0 -420
  2101. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/backtracer-inl.h +0 -75
  2102. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/backtracer.h +0 -46
  2103. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/circular_q.h +0 -146
  2104. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/console_globals.h +0 -32
  2105. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/file_helper-inl.h +0 -180
  2106. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/file_helper.h +0 -62
  2107. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/fmt_helper.h +0 -164
  2108. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/log_msg-inl.h +0 -37
  2109. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/log_msg.h +0 -37
  2110. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -58
  2111. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/log_msg_buffer.h +0 -33
  2112. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -154
  2113. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/null_mutex.h +0 -45
  2114. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/os-inl.h +0 -635
  2115. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/os.h +0 -122
  2116. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -28
  2117. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/periodic_worker.h +0 -60
  2118. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/registry-inl.h +0 -315
  2119. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/registry.h +0 -123
  2120. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/synchronous_factory.h +0 -24
  2121. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/tcp_client-windows.h +0 -160
  2122. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/tcp_client.h +0 -146
  2123. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/thread_pool-inl.h +0 -137
  2124. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/thread_pool.h +0 -122
  2125. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/udp_client-windows.h +0 -113
  2126. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/udp_client.h +0 -94
  2127. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/details/windows_include.h +0 -11
  2128. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -248
  2129. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/chrono.h +0 -22
  2130. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/compile.h +0 -22
  2131. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/fmt.h +0 -33
  2132. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/ostr.h +0 -22
  2133. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/ranges.h +0 -22
  2134. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/std.h +0 -23
  2135. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fmt/xchar.h +0 -22
  2136. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/formatter.h +0 -18
  2137. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/fwd.h +0 -18
  2138. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/logger-inl.h +0 -257
  2139. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/logger.h +0 -427
  2140. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/pattern_formatter-inl.h +0 -1436
  2141. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/pattern_formatter.h +0 -128
  2142. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/android_sink.h +0 -146
  2143. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -145
  2144. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -118
  2145. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -63
  2146. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/base_sink.h +0 -52
  2147. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -44
  2148. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -60
  2149. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/callback_sink.h +0 -61
  2150. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -247
  2151. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/dist_sink.h +0 -97
  2152. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -96
  2153. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -204
  2154. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/kafka_sink.h +0 -133
  2155. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/mongo_sink.h +0 -107
  2156. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/msvc_sink.h +0 -71
  2157. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/null_sink.h +0 -44
  2158. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/ostream_sink.h +0 -50
  2159. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/qt_sinks.h +0 -292
  2160. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -74
  2161. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -152
  2162. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -81
  2163. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/sink-inl.h +0 -25
  2164. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/sink.h +0 -35
  2165. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -38
  2166. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -45
  2167. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -138
  2168. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -87
  2169. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/syslog_sink.h +0 -109
  2170. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/systemd_sink.h +0 -126
  2171. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/tcp_sink.h +0 -81
  2172. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/udp_sink.h +0 -74
  2173. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -289
  2174. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -175
  2175. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -85
  2176. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/spdlog-inl.h +0 -125
  2177. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/spdlog.h +0 -363
  2178. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/stopwatch.h +0 -69
  2179. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/tweakme.h +0 -140
  2180. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/include/spdlog/version.h +0 -10
  2181. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/async.cpp +0 -11
  2182. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/bundled_fmtlib_format.cpp +0 -52
  2183. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/cfg.cpp +0 -8
  2184. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/color_sinks.cpp +0 -51
  2185. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/file_sinks.cpp +0 -20
  2186. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/spdlog.cpp +0 -26
  2187. data/ext/cache/spdlog/66ab2619a0014319471759c03e2de1af6bda14de/spdlog/src/stdout_sinks.cpp +0 -29
  2188. data/ext/couchbase/core/impl/internal_manager_error_context.cxx +0 -113
  2189. data/ext/couchbase/core/impl/internal_manager_error_context.hxx +0 -60
  2190. data/ext/couchbase/core/impl/manager_error_context.cxx +0 -100
  2191. data/ext/couchbase/core/impl/search_error_context.cxx +0 -147
  2192. data/ext/couchbase/couchbase/analytics_error_context.hxx +0 -143
  2193. data/ext/couchbase/couchbase/fmt/key_value_error_map_attribute.hxx +0 -100
  2194. data/ext/couchbase/couchbase/fmt/key_value_extended_error_info.hxx +0 -52
  2195. data/ext/couchbase/couchbase/fmt/key_value_status_code.hxx +0 -269
  2196. data/ext/couchbase/couchbase/key_value_error_context.hxx +0 -229
  2197. data/ext/couchbase/couchbase/key_value_error_map_attribute.hxx +0 -136
  2198. data/ext/couchbase/couchbase/key_value_error_map_info.hxx +0 -138
  2199. data/ext/couchbase/couchbase/key_value_extended_error_info.hxx +0 -86
  2200. data/ext/couchbase/couchbase/key_value_status_code.hxx +0 -109
  2201. data/ext/couchbase/couchbase/manager_error_context.hxx +0 -111
  2202. data/ext/couchbase/couchbase/query_error_context.hxx +0 -145
  2203. data/ext/couchbase/couchbase/search_error_context.hxx +0 -138
  2204. data/ext/couchbase/couchbase/subdocument_error_context.hxx +0 -147
  2205. data/ext/couchbase/couchbase/transaction_error_context.hxx +0 -49
  2206. data/ext/couchbase/couchbase/transaction_op_error_context.hxx +0 -76
  2207. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/associator.hpp +0 -0
  2208. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/awaitable.hpp +0 -0
  2209. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/buffered_read_stream_fwd.hpp +0 -0
  2210. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/buffered_stream_fwd.hpp +0 -0
  2211. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/buffered_write_stream_fwd.hpp +0 -0
  2212. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/completion_condition.hpp +0 -0
  2213. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/connect_pipe.hpp +0 -0
  2214. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/coroutine.hpp +0 -0
  2215. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/deadline_timer.hpp +0 -0
  2216. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/assert.hpp +0 -0
  2217. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/buffer_resize_guard.hpp +0 -0
  2218. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/buffered_stream_storage.hpp +0 -0
  2219. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/call_stack.hpp +0 -0
  2220. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/chrono_time_traits.hpp +0 -0
  2221. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/concurrency_hint.hpp +0 -0
  2222. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/conditionally_enabled_event.hpp +0 -0
  2223. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/conditionally_enabled_mutex.hpp +0 -0
  2224. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/date_time_fwd.hpp +0 -0
  2225. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/dependent_type.hpp +0 -0
  2226. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/descriptor_ops.hpp +0 -0
  2227. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/dev_poll_reactor.hpp +0 -0
  2228. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/epoll_reactor.hpp +0 -0
  2229. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/eventfd_select_interrupter.hpp +0 -0
  2230. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/fd_set_adapter.hpp +0 -0
  2231. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/handler_cont_helpers.hpp +0 -0
  2232. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/hash_map.hpp +0 -0
  2233. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/buffer_sequence_adapter.ipp +0 -0
  2234. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/descriptor_ops.ipp +0 -0
  2235. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/dev_poll_reactor.hpp +0 -0
  2236. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/dev_poll_reactor.ipp +0 -0
  2237. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/epoll_reactor.hpp +0 -0
  2238. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/epoll_reactor.ipp +0 -0
  2239. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/eventfd_select_interrupter.ipp +0 -0
  2240. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/io_uring_file_service.ipp +0 -0
  2241. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/io_uring_service.hpp +0 -0
  2242. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/io_uring_service.ipp +0 -0
  2243. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/kqueue_reactor.hpp +0 -0
  2244. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/kqueue_reactor.ipp +0 -0
  2245. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/null_event.ipp +0 -0
  2246. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/pipe_select_interrupter.ipp +0 -0
  2247. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/posix_event.ipp +0 -0
  2248. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/posix_mutex.ipp +0 -0
  2249. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/posix_serial_port_service.ipp +0 -0
  2250. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/posix_thread.ipp +0 -0
  2251. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/posix_tss_ptr.ipp +0 -0
  2252. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/scheduler.ipp +0 -0
  2253. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/select_reactor.hpp +0 -0
  2254. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/select_reactor.ipp +0 -0
  2255. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/service_registry.ipp +0 -0
  2256. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/signal_set_service.ipp +0 -0
  2257. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/socket_ops.ipp +0 -0
  2258. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/socket_select_interrupter.ipp +0 -0
  2259. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/strand_executor_service.ipp +0 -0
  2260. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/strand_service.ipp +0 -0
  2261. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/thread_context.ipp +0 -0
  2262. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/timer_queue_set.ipp +0 -0
  2263. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_event.ipp +0 -0
  2264. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_iocp_file_service.ipp +0 -0
  2265. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_iocp_handle_service.ipp +0 -0
  2266. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_iocp_serial_port_service.ipp +0 -0
  2267. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_mutex.ipp +0 -0
  2268. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_object_handle_service.ipp +0 -0
  2269. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_static_mutex.ipp +0 -0
  2270. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_thread.ipp +0 -0
  2271. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/win_tss_ptr.ipp +0 -0
  2272. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/winrt_timer_scheduler.hpp +0 -0
  2273. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/winrt_timer_scheduler.ipp +0 -0
  2274. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/impl/winsock_init.ipp +0 -0
  2275. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/io_control.hpp +0 -0
  2276. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/io_uring_file_service.hpp +0 -0
  2277. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/io_uring_operation.hpp +0 -0
  2278. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/io_uring_service.hpp +0 -0
  2279. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/is_executor.hpp +0 -0
  2280. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/keyword_tss_ptr.hpp +0 -0
  2281. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/kqueue_reactor.hpp +0 -0
  2282. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/local_free_on_block_exit.hpp +0 -0
  2283. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/noncopyable.hpp +0 -0
  2284. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_event.hpp +0 -0
  2285. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_fenced_block.hpp +0 -0
  2286. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_global.hpp +0 -0
  2287. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_mutex.hpp +0 -0
  2288. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_reactor.hpp +0 -0
  2289. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_signal_blocker.hpp +0 -0
  2290. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_static_mutex.hpp +0 -0
  2291. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_thread.hpp +0 -0
  2292. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/null_tss_ptr.hpp +0 -0
  2293. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/object_pool.hpp +0 -0
  2294. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/old_win_sdk_compat.hpp +0 -0
  2295. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/op_queue.hpp +0 -0
  2296. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/operation.hpp +0 -0
  2297. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/pipe_select_interrupter.hpp +0 -0
  2298. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/pop_options.hpp +0 -0
  2299. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_event.hpp +0 -0
  2300. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_fd_set_adapter.hpp +0 -0
  2301. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_global.hpp +0 -0
  2302. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_mutex.hpp +0 -0
  2303. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_serial_port_service.hpp +0 -0
  2304. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_signal_blocker.hpp +0 -0
  2305. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_static_mutex.hpp +0 -0
  2306. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_thread.hpp +0 -0
  2307. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/posix_tss_ptr.hpp +0 -0
  2308. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/push_options.hpp +0 -0
  2309. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/reactor.hpp +0 -0
  2310. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/reactor_op.hpp +0 -0
  2311. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/reactor_op_queue.hpp +0 -0
  2312. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/resolve_op.hpp +0 -0
  2313. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/resolver_service_base.hpp +0 -0
  2314. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/scheduler.hpp +0 -0
  2315. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/scheduler_operation.hpp +0 -0
  2316. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/scheduler_task.hpp +0 -0
  2317. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/scheduler_thread_info.hpp +0 -0
  2318. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/scoped_lock.hpp +0 -0
  2319. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/scoped_ptr.hpp +0 -0
  2320. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/select_interrupter.hpp +0 -0
  2321. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/select_reactor.hpp +0 -0
  2322. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/signal_blocker.hpp +0 -0
  2323. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/signal_init.hpp +0 -0
  2324. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/signal_op.hpp +0 -0
  2325. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/socket_holder.hpp +0 -0
  2326. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/socket_ops.hpp +0 -0
  2327. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/socket_option.hpp +0 -0
  2328. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/socket_select_interrupter.hpp +0 -0
  2329. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/socket_types.hpp +0 -0
  2330. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/source_location.hpp +0 -0
  2331. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/strand_service.hpp +0 -0
  2332. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/string_view.hpp +0 -0
  2333. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/thread_context.hpp +0 -0
  2334. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/thread_group.hpp +0 -0
  2335. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/throw_error.hpp +0 -0
  2336. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/throw_exception.hpp +0 -0
  2337. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/timer_queue.hpp +0 -0
  2338. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/timer_queue_base.hpp +0 -0
  2339. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/timer_queue_set.hpp +0 -0
  2340. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/timer_scheduler.hpp +0 -0
  2341. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/timer_scheduler_fwd.hpp +0 -0
  2342. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/tss_ptr.hpp +0 -0
  2343. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/wait_op.hpp +0 -0
  2344. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_event.hpp +0 -0
  2345. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_fd_set_adapter.hpp +0 -0
  2346. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_global.hpp +0 -0
  2347. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_iocp_file_service.hpp +0 -0
  2348. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_iocp_io_context.hpp +0 -0
  2349. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_iocp_operation.hpp +0 -0
  2350. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_iocp_serial_port_service.hpp +0 -0
  2351. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_iocp_thread_info.hpp +0 -0
  2352. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_mutex.hpp +0 -0
  2353. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_static_mutex.hpp +0 -0
  2354. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_thread.hpp +0 -0
  2355. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/win_tss_ptr.hpp +0 -0
  2356. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/winapp_thread.hpp +0 -0
  2357. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/wince_thread.hpp +0 -0
  2358. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/winrt_async_manager.hpp +0 -0
  2359. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/winrt_async_op.hpp +0 -0
  2360. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/winrt_timer_scheduler.hpp +0 -0
  2361. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/winrt_utils.hpp +0 -0
  2362. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/detail/winsock_init.hpp +0 -0
  2363. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/append.hpp +0 -0
  2364. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/as_tuple.hpp +0 -0
  2365. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/co_spawn.hpp +0 -0
  2366. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/coro.hpp +0 -0
  2367. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/coro_traits.hpp +0 -0
  2368. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/deferred.hpp +0 -0
  2369. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/detail/coro_completion_handler.hpp +0 -0
  2370. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/detail/coro_promise_allocator.hpp +0 -0
  2371. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/detail/has_signature.hpp +0 -0
  2372. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/detail/partial_promise.hpp +0 -0
  2373. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/impl/use_coro.hpp +0 -0
  2374. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/prepend.hpp +0 -0
  2375. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/experimental/promise.hpp +0 -0
  2376. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/file_base.hpp +0 -0
  2377. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/generic/detail/endpoint.hpp +0 -0
  2378. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/generic/detail/impl/endpoint.ipp +0 -0
  2379. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/handler_continuation_hook.hpp +0 -0
  2380. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/cancellation_signal.ipp +0 -0
  2381. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/connect_pipe.hpp +0 -0
  2382. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/connect_pipe.ipp +0 -0
  2383. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/execution_context.ipp +0 -0
  2384. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/io_context.ipp +0 -0
  2385. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/serial_port_base.hpp +0 -0
  2386. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/serial_port_base.ipp +0 -0
  2387. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/impl/thread_pool.ipp +0 -0
  2388. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/io_service.hpp +0 -0
  2389. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/io_service_strand.hpp +0 -0
  2390. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/basic_resolver_entry.hpp +0 -0
  2391. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/basic_resolver_query.hpp +0 -0
  2392. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/detail/socket_option.hpp +0 -0
  2393. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/host_name.hpp +0 -0
  2394. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/address.hpp +0 -0
  2395. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/address_v4.hpp +0 -0
  2396. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/address_v6.hpp +0 -0
  2397. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/basic_endpoint.hpp +0 -0
  2398. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/host_name.ipp +0 -0
  2399. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/network_v4.hpp +0 -0
  2400. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/impl/network_v6.hpp +0 -0
  2401. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/multicast.hpp +0 -0
  2402. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/resolver_base.hpp +0 -0
  2403. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/resolver_query_base.hpp +0 -0
  2404. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/unicast.hpp +0 -0
  2405. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ip/v6_only.hpp +0 -0
  2406. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/is_executor.hpp +0 -0
  2407. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/is_read_buffered.hpp +0 -0
  2408. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/is_write_buffered.hpp +0 -0
  2409. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/local/connect_pair.hpp +0 -0
  2410. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/local/detail/endpoint.hpp +0 -0
  2411. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/local/detail/impl/endpoint.ipp +0 -0
  2412. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/posix/descriptor.hpp +0 -0
  2413. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/posix/descriptor_base.hpp +0 -0
  2414. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/posix/stream_descriptor.hpp +0 -0
  2415. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/random_access_file.hpp +0 -0
  2416. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/readable_pipe.hpp +0 -0
  2417. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/serial_port.hpp +0 -0
  2418. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/serial_port_base.hpp +0 -0
  2419. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/signal_set.hpp +0 -0
  2420. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/socket_base.hpp +0 -0
  2421. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/context_base.hpp +0 -0
  2422. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/detail/openssl_init.hpp +0 -0
  2423. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/detail/openssl_types.hpp +0 -0
  2424. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/detail/password_callback.hpp +0 -0
  2425. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/detail/verify_callback.hpp +0 -0
  2426. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/host_name_verification.hpp +0 -0
  2427. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/impl/context.hpp +0 -0
  2428. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/impl/host_name_verification.ipp +0 -0
  2429. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/impl/rfc2818_verification.ipp +0 -0
  2430. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/impl/src.hpp +0 -0
  2431. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/rfc2818_verification.hpp +0 -0
  2432. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/stream_base.hpp +0 -0
  2433. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/verify_context.hpp +0 -0
  2434. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl/verify_mode.hpp +0 -0
  2435. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ssl.hpp +0 -0
  2436. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/static_thread_pool.hpp +0 -0
  2437. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/stream_file.hpp +0 -0
  2438. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/streambuf.hpp +0 -0
  2439. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/thread.hpp +0 -0
  2440. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/time_traits.hpp +0 -0
  2441. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/buffer.hpp +0 -0
  2442. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/executor.hpp +0 -0
  2443. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/internet.hpp +0 -0
  2444. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/io_context.hpp +0 -0
  2445. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/net.hpp +0 -0
  2446. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/socket.hpp +0 -0
  2447. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/ts/timer.hpp +0 -0
  2448. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/unyield.hpp +0 -0
  2449. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/wait_traits.hpp +0 -0
  2450. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/windows/object_handle.hpp +0 -0
  2451. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/windows/overlapped_handle.hpp +0 -0
  2452. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/windows/random_access_handle.hpp +0 -0
  2453. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/windows/stream_handle.hpp +0 -0
  2454. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/writable_pipe.hpp +0 -0
  2455. /data/ext/cache/asio/{a1d8afc0fa0ccceae5729647623b3f7fd6859548 → 41f31469d0dd420500b334dc8c2fd3ffe7320d8e}/asio/asio/include/asio/yield.hpp +0 -0
  2456. /data/ext/cache/fmt/{513ade7b9791ea53008d5320013a52e682a91501/fmt/LICENSE.rst → d3c862243fcf1c41b4c09903f35479bd42f135b7/fmt/LICENSE} +0 -0
  2457. /data/ext/cache/fmt/{513ade7b9791ea53008d5320013a52e682a91501 → d3c862243fcf1c41b4c09903f35479bd42f135b7}/fmt/src/format.cc +0 -0
  2458. /data/ext/cache/fmt/{513ade7b9791ea53008d5320013a52e682a91501 → d3c862243fcf1c41b4c09903f35479bd42f135b7}/fmt/support/cmake/FindSetEnv.cmake +0 -0
  2459. /data/ext/cache/fmt/{513ade7b9791ea53008d5320013a52e682a91501 → d3c862243fcf1c41b4c09903f35479bd42f135b7}/fmt/support/cmake/JoinPaths.cmake +0 -0
  2460. /data/ext/cache/fmt/{513ade7b9791ea53008d5320013a52e682a91501 → d3c862243fcf1c41b4c09903f35479bd42f135b7}/fmt/support/cmake/fmt-config.cmake.in +0 -0
  2461. /data/ext/cache/fmt/{513ade7b9791ea53008d5320013a52e682a91501 → d3c862243fcf1c41b4c09903f35479bd42f135b7}/fmt/support/cmake/fmt.pc.in +0 -0
  2462. /data/ext/cache/llhttp/{6862303abe6dfd515c1eb7f7cec05f29c92426e9 → b74a6759ffeff2e9b72f62f790afbc73362a526b}/llhttp/LICENSE-MIT +0 -0
  2463. /data/ext/cache/llhttp/{6862303abe6dfd515c1eb7f7cec05f29c92426e9 → b74a6759ffeff2e9b72f62f790afbc73362a526b}/llhttp/libllhttp.pc.in +0 -0
  2464. /data/ext/cache/llhttp/{6862303abe6dfd515c1eb7f7cec05f29c92426e9 → b74a6759ffeff2e9b72f62f790afbc73362a526b}/llhttp/src/api.c +0 -0
  2465. /data/ext/cache/llhttp/{6862303abe6dfd515c1eb7f7cec05f29c92426e9 → b74a6759ffeff2e9b72f62f790afbc73362a526b}/llhttp/src/http.c +0 -0
  2466. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/ide.cmake +0 -0
  2467. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/pch.h.in +0 -0
  2468. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/spdlog.pc.in +0 -0
  2469. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/spdlogCPack.cmake +0 -0
  2470. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/spdlogConfig.cmake.in +0 -0
  2471. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/utils.cmake +0 -0
  2472. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/cmake/version.rc.in +0 -0
  2473. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
  2474. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
  2475. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
  2476. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
  2477. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
  2478. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
  2479. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
  2480. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
  2481. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
  2482. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
  2483. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
  2484. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
  2485. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
  2486. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
  2487. /data/ext/cache/spdlog/{66ab2619a0014319471759c03e2de1af6bda14de → 25435891d500fa18cdfc40bd923333e006159907}/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
@@ -0,0 +1,4535 @@
1
+ /*
2
+ Formatting library for C++
3
+
4
+ Copyright (c) 2012 - present, Victor Zverovich
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ "Software"), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be
15
+ included in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+
25
+ --- Optional exception to the license ---
26
+
27
+ As an exception, if, as a result of your compiling your source code, portions
28
+ of this Software are embedded into a machine-executable object form of such
29
+ source code, you may redistribute such embedded portions in such object form
30
+ without including the above copyright and permission notices.
31
+ */
32
+
33
+ #ifndef FMT_FORMAT_H_
34
+ #define FMT_FORMAT_H_
35
+
36
+ #include <cmath> // std::signbit
37
+ #include <cstdint> // uint32_t
38
+ #include <cstring> // std::memcpy
39
+ #include <initializer_list> // std::initializer_list
40
+ #include <limits> // std::numeric_limits
41
+ #include <memory> // std::uninitialized_copy
42
+ #include <stdexcept> // std::runtime_error
43
+ #include <system_error> // std::system_error
44
+
45
+ #ifdef __cpp_lib_bit_cast
46
+ # include <bit> // std::bit_cast
47
+ #endif
48
+
49
+ #include "core.h"
50
+
51
+ #if defined __cpp_inline_variables && __cpp_inline_variables >= 201606L
52
+ # define FMT_INLINE_VARIABLE inline
53
+ #else
54
+ # define FMT_INLINE_VARIABLE
55
+ #endif
56
+
57
+ #if FMT_HAS_CPP17_ATTRIBUTE(fallthrough)
58
+ # define FMT_FALLTHROUGH [[fallthrough]]
59
+ #elif defined(__clang__)
60
+ # define FMT_FALLTHROUGH [[clang::fallthrough]]
61
+ #elif FMT_GCC_VERSION >= 700 && \
62
+ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 520)
63
+ # define FMT_FALLTHROUGH [[gnu::fallthrough]]
64
+ #else
65
+ # define FMT_FALLTHROUGH
66
+ #endif
67
+
68
+ #ifndef FMT_DEPRECATED
69
+ # if FMT_HAS_CPP14_ATTRIBUTE(deprecated) || FMT_MSC_VERSION >= 1900
70
+ # define FMT_DEPRECATED [[deprecated]]
71
+ # else
72
+ # if (defined(__GNUC__) && !defined(__LCC__)) || defined(__clang__)
73
+ # define FMT_DEPRECATED __attribute__((deprecated))
74
+ # elif FMT_MSC_VERSION
75
+ # define FMT_DEPRECATED __declspec(deprecated)
76
+ # else
77
+ # define FMT_DEPRECATED /* deprecated */
78
+ # endif
79
+ # endif
80
+ #endif
81
+
82
+ #ifndef FMT_NO_UNIQUE_ADDRESS
83
+ # if FMT_CPLUSPLUS >= 202002L
84
+ # if FMT_HAS_CPP_ATTRIBUTE(no_unique_address)
85
+ # define FMT_NO_UNIQUE_ADDRESS [[no_unique_address]]
86
+ // VS2019 v16.10 and later except clang-cl (https://reviews.llvm.org/D110485)
87
+ # elif (FMT_MSC_VERSION >= 1929) && !FMT_CLANG_VERSION
88
+ # define FMT_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]]
89
+ # endif
90
+ # endif
91
+ #endif
92
+ #ifndef FMT_NO_UNIQUE_ADDRESS
93
+ # define FMT_NO_UNIQUE_ADDRESS
94
+ #endif
95
+
96
+ // Visibility when compiled as a shared library/object.
97
+ #if defined(FMT_LIB_EXPORT) || defined(FMT_SHARED)
98
+ # define FMT_SO_VISIBILITY(value) FMT_VISIBILITY(value)
99
+ #else
100
+ # define FMT_SO_VISIBILITY(value)
101
+ #endif
102
+
103
+ #ifdef __has_builtin
104
+ # define FMT_HAS_BUILTIN(x) __has_builtin(x)
105
+ #else
106
+ # define FMT_HAS_BUILTIN(x) 0
107
+ #endif
108
+
109
+ #if FMT_GCC_VERSION || FMT_CLANG_VERSION
110
+ # define FMT_NOINLINE __attribute__((noinline))
111
+ #else
112
+ # define FMT_NOINLINE
113
+ #endif
114
+
115
+ #ifndef FMT_THROW
116
+ # if FMT_EXCEPTIONS
117
+ # if FMT_MSC_VERSION || defined(__NVCC__)
118
+ FMT_BEGIN_NAMESPACE
119
+ namespace detail {
120
+ template <typename Exception> inline void do_throw(const Exception& x) {
121
+ // Silence unreachable code warnings in MSVC and NVCC because these
122
+ // are nearly impossible to fix in a generic code.
123
+ volatile bool b = true;
124
+ if (b) throw x;
125
+ }
126
+ } // namespace detail
127
+ FMT_END_NAMESPACE
128
+ # define FMT_THROW(x) detail::do_throw(x)
129
+ # else
130
+ # define FMT_THROW(x) throw x
131
+ # endif
132
+ # else
133
+ # define FMT_THROW(x) \
134
+ ::fmt::detail::assert_fail(__FILE__, __LINE__, (x).what())
135
+ # endif
136
+ #endif
137
+
138
+ #if FMT_EXCEPTIONS
139
+ # define FMT_TRY try
140
+ # define FMT_CATCH(x) catch (x)
141
+ #else
142
+ # define FMT_TRY if (true)
143
+ # define FMT_CATCH(x) if (false)
144
+ #endif
145
+
146
+ #ifndef FMT_MAYBE_UNUSED
147
+ # if FMT_HAS_CPP17_ATTRIBUTE(maybe_unused)
148
+ # define FMT_MAYBE_UNUSED [[maybe_unused]]
149
+ # else
150
+ # define FMT_MAYBE_UNUSED
151
+ # endif
152
+ #endif
153
+
154
+ #ifndef FMT_USE_USER_DEFINED_LITERALS
155
+ // EDG based compilers (Intel, NVIDIA, Elbrus, etc), GCC and MSVC support UDLs.
156
+ //
157
+ // GCC before 4.9 requires a space in `operator"" _a` which is invalid in later
158
+ // compiler versions.
159
+ # if (FMT_HAS_FEATURE(cxx_user_literals) || FMT_GCC_VERSION >= 409 || \
160
+ FMT_MSC_VERSION >= 1900) && \
161
+ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= /* UDL feature */ 480)
162
+ # define FMT_USE_USER_DEFINED_LITERALS 1
163
+ # else
164
+ # define FMT_USE_USER_DEFINED_LITERALS 0
165
+ # endif
166
+ #endif
167
+
168
+ // Defining FMT_REDUCE_INT_INSTANTIATIONS to 1, will reduce the number of
169
+ // integer formatter template instantiations to just one by only using the
170
+ // largest integer type. This results in a reduction in binary size but will
171
+ // cause a decrease in integer formatting performance.
172
+ #if !defined(FMT_REDUCE_INT_INSTANTIATIONS)
173
+ # define FMT_REDUCE_INT_INSTANTIATIONS 0
174
+ #endif
175
+
176
+ // __builtin_clz is broken in clang with Microsoft CodeGen:
177
+ // https://github.com/fmtlib/fmt/issues/519.
178
+ #if !FMT_MSC_VERSION
179
+ # if FMT_HAS_BUILTIN(__builtin_clz) || FMT_GCC_VERSION || FMT_ICC_VERSION
180
+ # define FMT_BUILTIN_CLZ(n) __builtin_clz(n)
181
+ # endif
182
+ # if FMT_HAS_BUILTIN(__builtin_clzll) || FMT_GCC_VERSION || FMT_ICC_VERSION
183
+ # define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n)
184
+ # endif
185
+ #endif
186
+
187
+ // __builtin_ctz is broken in Intel Compiler Classic on Windows:
188
+ // https://github.com/fmtlib/fmt/issues/2510.
189
+ #ifndef __ICL
190
+ # if FMT_HAS_BUILTIN(__builtin_ctz) || FMT_GCC_VERSION || FMT_ICC_VERSION || \
191
+ defined(__NVCOMPILER)
192
+ # define FMT_BUILTIN_CTZ(n) __builtin_ctz(n)
193
+ # endif
194
+ # if FMT_HAS_BUILTIN(__builtin_ctzll) || FMT_GCC_VERSION || \
195
+ FMT_ICC_VERSION || defined(__NVCOMPILER)
196
+ # define FMT_BUILTIN_CTZLL(n) __builtin_ctzll(n)
197
+ # endif
198
+ #endif
199
+
200
+ #if FMT_MSC_VERSION
201
+ # include <intrin.h> // _BitScanReverse[64], _BitScanForward[64], _umul128
202
+ #endif
203
+
204
+ // Some compilers masquerade as both MSVC and GCC-likes or otherwise support
205
+ // __builtin_clz and __builtin_clzll, so only define FMT_BUILTIN_CLZ using the
206
+ // MSVC intrinsics if the clz and clzll builtins are not available.
207
+ #if FMT_MSC_VERSION && !defined(FMT_BUILTIN_CLZLL) && \
208
+ !defined(FMT_BUILTIN_CTZLL)
209
+ FMT_BEGIN_NAMESPACE
210
+ namespace detail {
211
+ // Avoid Clang with Microsoft CodeGen's -Wunknown-pragmas warning.
212
+ # if !defined(__clang__)
213
+ # pragma intrinsic(_BitScanForward)
214
+ # pragma intrinsic(_BitScanReverse)
215
+ # if defined(_WIN64)
216
+ # pragma intrinsic(_BitScanForward64)
217
+ # pragma intrinsic(_BitScanReverse64)
218
+ # endif
219
+ # endif
220
+
221
+ inline auto clz(uint32_t x) -> int {
222
+ unsigned long r = 0;
223
+ _BitScanReverse(&r, x);
224
+ FMT_ASSERT(x != 0, "");
225
+ // Static analysis complains about using uninitialized data
226
+ // "r", but the only way that can happen is if "x" is 0,
227
+ // which the callers guarantee to not happen.
228
+ FMT_MSC_WARNING(suppress : 6102)
229
+ return 31 ^ static_cast<int>(r);
230
+ }
231
+ # define FMT_BUILTIN_CLZ(n) detail::clz(n)
232
+
233
+ inline auto clzll(uint64_t x) -> int {
234
+ unsigned long r = 0;
235
+ # ifdef _WIN64
236
+ _BitScanReverse64(&r, x);
237
+ # else
238
+ // Scan the high 32 bits.
239
+ if (_BitScanReverse(&r, static_cast<uint32_t>(x >> 32)))
240
+ return 63 ^ static_cast<int>(r + 32);
241
+ // Scan the low 32 bits.
242
+ _BitScanReverse(&r, static_cast<uint32_t>(x));
243
+ # endif
244
+ FMT_ASSERT(x != 0, "");
245
+ FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning.
246
+ return 63 ^ static_cast<int>(r);
247
+ }
248
+ # define FMT_BUILTIN_CLZLL(n) detail::clzll(n)
249
+
250
+ inline auto ctz(uint32_t x) -> int {
251
+ unsigned long r = 0;
252
+ _BitScanForward(&r, x);
253
+ FMT_ASSERT(x != 0, "");
254
+ FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning.
255
+ return static_cast<int>(r);
256
+ }
257
+ # define FMT_BUILTIN_CTZ(n) detail::ctz(n)
258
+
259
+ inline auto ctzll(uint64_t x) -> int {
260
+ unsigned long r = 0;
261
+ FMT_ASSERT(x != 0, "");
262
+ FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning.
263
+ # ifdef _WIN64
264
+ _BitScanForward64(&r, x);
265
+ # else
266
+ // Scan the low 32 bits.
267
+ if (_BitScanForward(&r, static_cast<uint32_t>(x))) return static_cast<int>(r);
268
+ // Scan the high 32 bits.
269
+ _BitScanForward(&r, static_cast<uint32_t>(x >> 32));
270
+ r += 32;
271
+ # endif
272
+ return static_cast<int>(r);
273
+ }
274
+ # define FMT_BUILTIN_CTZLL(n) detail::ctzll(n)
275
+ } // namespace detail
276
+ FMT_END_NAMESPACE
277
+ #endif
278
+
279
+ FMT_BEGIN_NAMESPACE
280
+ namespace detail {
281
+
282
+ FMT_CONSTEXPR inline void abort_fuzzing_if(bool condition) {
283
+ ignore_unused(condition);
284
+ #ifdef FMT_FUZZ
285
+ if (condition) throw std::runtime_error("fuzzing limit reached");
286
+ #endif
287
+ }
288
+
289
+ template <typename CharT, CharT... C> struct string_literal {
290
+ static constexpr CharT value[sizeof...(C)] = {C...};
291
+ constexpr operator basic_string_view<CharT>() const {
292
+ return {value, sizeof...(C)};
293
+ }
294
+ };
295
+
296
+ #if FMT_CPLUSPLUS < 201703L
297
+ template <typename CharT, CharT... C>
298
+ constexpr CharT string_literal<CharT, C...>::value[sizeof...(C)];
299
+ #endif
300
+
301
+ // Implementation of std::bit_cast for pre-C++20.
302
+ template <typename To, typename From, FMT_ENABLE_IF(sizeof(To) == sizeof(From))>
303
+ FMT_CONSTEXPR20 auto bit_cast(const From& from) -> To {
304
+ #ifdef __cpp_lib_bit_cast
305
+ if (is_constant_evaluated()) return std::bit_cast<To>(from);
306
+ #endif
307
+ auto to = To();
308
+ // The cast suppresses a bogus -Wclass-memaccess on GCC.
309
+ std::memcpy(static_cast<void*>(&to), &from, sizeof(to));
310
+ return to;
311
+ }
312
+
313
+ inline auto is_big_endian() -> bool {
314
+ #ifdef _WIN32
315
+ return false;
316
+ #elif defined(__BIG_ENDIAN__)
317
+ return true;
318
+ #elif defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__)
319
+ return __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__;
320
+ #else
321
+ struct bytes {
322
+ char data[sizeof(int)];
323
+ };
324
+ return bit_cast<bytes>(1).data[0] == 0;
325
+ #endif
326
+ }
327
+
328
+ class uint128_fallback {
329
+ private:
330
+ uint64_t lo_, hi_;
331
+
332
+ public:
333
+ constexpr uint128_fallback(uint64_t hi, uint64_t lo) : lo_(lo), hi_(hi) {}
334
+ constexpr uint128_fallback(uint64_t value = 0) : lo_(value), hi_(0) {}
335
+
336
+ constexpr auto high() const noexcept -> uint64_t { return hi_; }
337
+ constexpr auto low() const noexcept -> uint64_t { return lo_; }
338
+
339
+ template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
340
+ constexpr explicit operator T() const {
341
+ return static_cast<T>(lo_);
342
+ }
343
+
344
+ friend constexpr auto operator==(const uint128_fallback& lhs,
345
+ const uint128_fallback& rhs) -> bool {
346
+ return lhs.hi_ == rhs.hi_ && lhs.lo_ == rhs.lo_;
347
+ }
348
+ friend constexpr auto operator!=(const uint128_fallback& lhs,
349
+ const uint128_fallback& rhs) -> bool {
350
+ return !(lhs == rhs);
351
+ }
352
+ friend constexpr auto operator>(const uint128_fallback& lhs,
353
+ const uint128_fallback& rhs) -> bool {
354
+ return lhs.hi_ != rhs.hi_ ? lhs.hi_ > rhs.hi_ : lhs.lo_ > rhs.lo_;
355
+ }
356
+ friend constexpr auto operator|(const uint128_fallback& lhs,
357
+ const uint128_fallback& rhs)
358
+ -> uint128_fallback {
359
+ return {lhs.hi_ | rhs.hi_, lhs.lo_ | rhs.lo_};
360
+ }
361
+ friend constexpr auto operator&(const uint128_fallback& lhs,
362
+ const uint128_fallback& rhs)
363
+ -> uint128_fallback {
364
+ return {lhs.hi_ & rhs.hi_, lhs.lo_ & rhs.lo_};
365
+ }
366
+ friend constexpr auto operator~(const uint128_fallback& n)
367
+ -> uint128_fallback {
368
+ return {~n.hi_, ~n.lo_};
369
+ }
370
+ friend auto operator+(const uint128_fallback& lhs,
371
+ const uint128_fallback& rhs) -> uint128_fallback {
372
+ auto result = uint128_fallback(lhs);
373
+ result += rhs;
374
+ return result;
375
+ }
376
+ friend auto operator*(const uint128_fallback& lhs, uint32_t rhs)
377
+ -> uint128_fallback {
378
+ FMT_ASSERT(lhs.hi_ == 0, "");
379
+ uint64_t hi = (lhs.lo_ >> 32) * rhs;
380
+ uint64_t lo = (lhs.lo_ & ~uint32_t()) * rhs;
381
+ uint64_t new_lo = (hi << 32) + lo;
382
+ return {(hi >> 32) + (new_lo < lo ? 1 : 0), new_lo};
383
+ }
384
+ friend auto operator-(const uint128_fallback& lhs, uint64_t rhs)
385
+ -> uint128_fallback {
386
+ return {lhs.hi_ - (lhs.lo_ < rhs ? 1 : 0), lhs.lo_ - rhs};
387
+ }
388
+ FMT_CONSTEXPR auto operator>>(int shift) const -> uint128_fallback {
389
+ if (shift == 64) return {0, hi_};
390
+ if (shift > 64) return uint128_fallback(0, hi_) >> (shift - 64);
391
+ return {hi_ >> shift, (hi_ << (64 - shift)) | (lo_ >> shift)};
392
+ }
393
+ FMT_CONSTEXPR auto operator<<(int shift) const -> uint128_fallback {
394
+ if (shift == 64) return {lo_, 0};
395
+ if (shift > 64) return uint128_fallback(lo_, 0) << (shift - 64);
396
+ return {hi_ << shift | (lo_ >> (64 - shift)), (lo_ << shift)};
397
+ }
398
+ FMT_CONSTEXPR auto operator>>=(int shift) -> uint128_fallback& {
399
+ return *this = *this >> shift;
400
+ }
401
+ FMT_CONSTEXPR void operator+=(uint128_fallback n) {
402
+ uint64_t new_lo = lo_ + n.lo_;
403
+ uint64_t new_hi = hi_ + n.hi_ + (new_lo < lo_ ? 1 : 0);
404
+ FMT_ASSERT(new_hi >= hi_, "");
405
+ lo_ = new_lo;
406
+ hi_ = new_hi;
407
+ }
408
+ FMT_CONSTEXPR void operator&=(uint128_fallback n) {
409
+ lo_ &= n.lo_;
410
+ hi_ &= n.hi_;
411
+ }
412
+
413
+ FMT_CONSTEXPR20 auto operator+=(uint64_t n) noexcept -> uint128_fallback& {
414
+ if (is_constant_evaluated()) {
415
+ lo_ += n;
416
+ hi_ += (lo_ < n ? 1 : 0);
417
+ return *this;
418
+ }
419
+ #if FMT_HAS_BUILTIN(__builtin_addcll) && !defined(__ibmxl__)
420
+ unsigned long long carry;
421
+ lo_ = __builtin_addcll(lo_, n, 0, &carry);
422
+ hi_ += carry;
423
+ #elif FMT_HAS_BUILTIN(__builtin_ia32_addcarryx_u64) && !defined(__ibmxl__)
424
+ unsigned long long result;
425
+ auto carry = __builtin_ia32_addcarryx_u64(0, lo_, n, &result);
426
+ lo_ = result;
427
+ hi_ += carry;
428
+ #elif defined(_MSC_VER) && defined(_M_X64)
429
+ auto carry = _addcarry_u64(0, lo_, n, &lo_);
430
+ _addcarry_u64(carry, hi_, 0, &hi_);
431
+ #else
432
+ lo_ += n;
433
+ hi_ += (lo_ < n ? 1 : 0);
434
+ #endif
435
+ return *this;
436
+ }
437
+ };
438
+
439
+ using uint128_t = conditional_t<FMT_USE_INT128, uint128_opt, uint128_fallback>;
440
+
441
+ #ifdef UINTPTR_MAX
442
+ using uintptr_t = ::uintptr_t;
443
+ #else
444
+ using uintptr_t = uint128_t;
445
+ #endif
446
+
447
+ // Returns the largest possible value for type T. Same as
448
+ // std::numeric_limits<T>::max() but shorter and not affected by the max macro.
449
+ template <typename T> constexpr auto max_value() -> T {
450
+ return (std::numeric_limits<T>::max)();
451
+ }
452
+ template <typename T> constexpr auto num_bits() -> int {
453
+ return std::numeric_limits<T>::digits;
454
+ }
455
+ // std::numeric_limits<T>::digits may return 0 for 128-bit ints.
456
+ template <> constexpr auto num_bits<int128_opt>() -> int { return 128; }
457
+ template <> constexpr auto num_bits<uint128_t>() -> int { return 128; }
458
+
459
+ // A heterogeneous bit_cast used for converting 96-bit long double to uint128_t
460
+ // and 128-bit pointers to uint128_fallback.
461
+ template <typename To, typename From, FMT_ENABLE_IF(sizeof(To) > sizeof(From))>
462
+ inline auto bit_cast(const From& from) -> To {
463
+ constexpr auto size = static_cast<int>(sizeof(From) / sizeof(unsigned));
464
+ struct data_t {
465
+ unsigned value[static_cast<unsigned>(size)];
466
+ } data = bit_cast<data_t>(from);
467
+ auto result = To();
468
+ if (const_check(is_big_endian())) {
469
+ for (int i = 0; i < size; ++i)
470
+ result = (result << num_bits<unsigned>()) | data.value[i];
471
+ } else {
472
+ for (int i = size - 1; i >= 0; --i)
473
+ result = (result << num_bits<unsigned>()) | data.value[i];
474
+ }
475
+ return result;
476
+ }
477
+
478
+ template <typename UInt>
479
+ FMT_CONSTEXPR20 inline auto countl_zero_fallback(UInt n) -> int {
480
+ int lz = 0;
481
+ constexpr UInt msb_mask = static_cast<UInt>(1) << (num_bits<UInt>() - 1);
482
+ for (; (n & msb_mask) == 0; n <<= 1) lz++;
483
+ return lz;
484
+ }
485
+
486
+ FMT_CONSTEXPR20 inline auto countl_zero(uint32_t n) -> int {
487
+ #ifdef FMT_BUILTIN_CLZ
488
+ if (!is_constant_evaluated()) return FMT_BUILTIN_CLZ(n);
489
+ #endif
490
+ return countl_zero_fallback(n);
491
+ }
492
+
493
+ FMT_CONSTEXPR20 inline auto countl_zero(uint64_t n) -> int {
494
+ #ifdef FMT_BUILTIN_CLZLL
495
+ if (!is_constant_evaluated()) return FMT_BUILTIN_CLZLL(n);
496
+ #endif
497
+ return countl_zero_fallback(n);
498
+ }
499
+
500
+ FMT_INLINE void assume(bool condition) {
501
+ (void)condition;
502
+ #if FMT_HAS_BUILTIN(__builtin_assume) && !FMT_ICC_VERSION
503
+ __builtin_assume(condition);
504
+ #elif FMT_GCC_VERSION
505
+ if (!condition) __builtin_unreachable();
506
+ #endif
507
+ }
508
+
509
+ // An approximation of iterator_t for pre-C++20 systems.
510
+ template <typename T>
511
+ using iterator_t = decltype(std::begin(std::declval<T&>()));
512
+ template <typename T> using sentinel_t = decltype(std::end(std::declval<T&>()));
513
+
514
+ // A workaround for std::string not having mutable data() until C++17.
515
+ template <typename Char>
516
+ inline auto get_data(std::basic_string<Char>& s) -> Char* {
517
+ return &s[0];
518
+ }
519
+ template <typename Container>
520
+ inline auto get_data(Container& c) -> typename Container::value_type* {
521
+ return c.data();
522
+ }
523
+
524
+ // Attempts to reserve space for n extra characters in the output range.
525
+ // Returns a pointer to the reserved range or a reference to it.
526
+ template <typename Container, FMT_ENABLE_IF(is_contiguous<Container>::value)>
527
+ #if FMT_CLANG_VERSION >= 307 && !FMT_ICC_VERSION
528
+ __attribute__((no_sanitize("undefined")))
529
+ #endif
530
+ inline auto
531
+ reserve(std::back_insert_iterator<Container> it, size_t n) ->
532
+ typename Container::value_type* {
533
+ Container& c = get_container(it);
534
+ size_t size = c.size();
535
+ c.resize(size + n);
536
+ return get_data(c) + size;
537
+ }
538
+
539
+ template <typename T>
540
+ inline auto reserve(buffer_appender<T> it, size_t n) -> buffer_appender<T> {
541
+ buffer<T>& buf = get_container(it);
542
+ buf.try_reserve(buf.size() + n);
543
+ return it;
544
+ }
545
+
546
+ template <typename Iterator>
547
+ constexpr auto reserve(Iterator& it, size_t) -> Iterator& {
548
+ return it;
549
+ }
550
+
551
+ template <typename OutputIt>
552
+ using reserve_iterator =
553
+ remove_reference_t<decltype(reserve(std::declval<OutputIt&>(), 0))>;
554
+
555
+ template <typename T, typename OutputIt>
556
+ constexpr auto to_pointer(OutputIt, size_t) -> T* {
557
+ return nullptr;
558
+ }
559
+ template <typename T> auto to_pointer(buffer_appender<T> it, size_t n) -> T* {
560
+ buffer<T>& buf = get_container(it);
561
+ auto size = buf.size();
562
+ if (buf.capacity() < size + n) return nullptr;
563
+ buf.try_resize(size + n);
564
+ return buf.data() + size;
565
+ }
566
+
567
+ template <typename Container, FMT_ENABLE_IF(is_contiguous<Container>::value)>
568
+ inline auto base_iterator(std::back_insert_iterator<Container> it,
569
+ typename Container::value_type*)
570
+ -> std::back_insert_iterator<Container> {
571
+ return it;
572
+ }
573
+
574
+ template <typename Iterator>
575
+ constexpr auto base_iterator(Iterator, Iterator it) -> Iterator {
576
+ return it;
577
+ }
578
+
579
+ // <algorithm> is spectacularly slow to compile in C++20 so use a simple fill_n
580
+ // instead (#1998).
581
+ template <typename OutputIt, typename Size, typename T>
582
+ FMT_CONSTEXPR auto fill_n(OutputIt out, Size count, const T& value)
583
+ -> OutputIt {
584
+ for (Size i = 0; i < count; ++i) *out++ = value;
585
+ return out;
586
+ }
587
+ template <typename T, typename Size>
588
+ FMT_CONSTEXPR20 auto fill_n(T* out, Size count, char value) -> T* {
589
+ if (is_constant_evaluated()) {
590
+ return fill_n<T*, Size, T>(out, count, value);
591
+ }
592
+ std::memset(out, value, to_unsigned(count));
593
+ return out + count;
594
+ }
595
+
596
+ #ifdef __cpp_char8_t
597
+ using char8_type = char8_t;
598
+ #else
599
+ enum char8_type : unsigned char {};
600
+ #endif
601
+
602
+ template <typename OutChar, typename InputIt, typename OutputIt>
603
+ FMT_CONSTEXPR FMT_NOINLINE auto copy_str_noinline(InputIt begin, InputIt end,
604
+ OutputIt out) -> OutputIt {
605
+ return copy_str<OutChar>(begin, end, out);
606
+ }
607
+
608
+ // A public domain branchless UTF-8 decoder by Christopher Wellons:
609
+ // https://github.com/skeeto/branchless-utf8
610
+ /* Decode the next character, c, from s, reporting errors in e.
611
+ *
612
+ * Since this is a branchless decoder, four bytes will be read from the
613
+ * buffer regardless of the actual length of the next character. This
614
+ * means the buffer _must_ have at least three bytes of zero padding
615
+ * following the end of the data stream.
616
+ *
617
+ * Errors are reported in e, which will be non-zero if the parsed
618
+ * character was somehow invalid: invalid byte sequence, non-canonical
619
+ * encoding, or a surrogate half.
620
+ *
621
+ * The function returns a pointer to the next character. When an error
622
+ * occurs, this pointer will be a guess that depends on the particular
623
+ * error, but it will always advance at least one byte.
624
+ */
625
+ FMT_CONSTEXPR inline auto utf8_decode(const char* s, uint32_t* c, int* e)
626
+ -> const char* {
627
+ constexpr const int masks[] = {0x00, 0x7f, 0x1f, 0x0f, 0x07};
628
+ constexpr const uint32_t mins[] = {4194304, 0, 128, 2048, 65536};
629
+ constexpr const int shiftc[] = {0, 18, 12, 6, 0};
630
+ constexpr const int shifte[] = {0, 6, 4, 2, 0};
631
+
632
+ int len = "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\0\0\0\0\0\0\0\0\2\2\2\2\3\3\4"
633
+ [static_cast<unsigned char>(*s) >> 3];
634
+ // Compute the pointer to the next character early so that the next
635
+ // iteration can start working on the next character. Neither Clang
636
+ // nor GCC figure out this reordering on their own.
637
+ const char* next = s + len + !len;
638
+
639
+ using uchar = unsigned char;
640
+
641
+ // Assume a four-byte character and load four bytes. Unused bits are
642
+ // shifted out.
643
+ *c = uint32_t(uchar(s[0]) & masks[len]) << 18;
644
+ *c |= uint32_t(uchar(s[1]) & 0x3f) << 12;
645
+ *c |= uint32_t(uchar(s[2]) & 0x3f) << 6;
646
+ *c |= uint32_t(uchar(s[3]) & 0x3f) << 0;
647
+ *c >>= shiftc[len];
648
+
649
+ // Accumulate the various error conditions.
650
+ *e = (*c < mins[len]) << 6; // non-canonical encoding
651
+ *e |= ((*c >> 11) == 0x1b) << 7; // surrogate half?
652
+ *e |= (*c > 0x10FFFF) << 8; // out of range?
653
+ *e |= (uchar(s[1]) & 0xc0) >> 2;
654
+ *e |= (uchar(s[2]) & 0xc0) >> 4;
655
+ *e |= uchar(s[3]) >> 6;
656
+ *e ^= 0x2a; // top two bits of each tail byte correct?
657
+ *e >>= shifte[len];
658
+
659
+ return next;
660
+ }
661
+
662
+ constexpr FMT_INLINE_VARIABLE uint32_t invalid_code_point = ~uint32_t();
663
+
664
+ // Invokes f(cp, sv) for every code point cp in s with sv being the string view
665
+ // corresponding to the code point. cp is invalid_code_point on error.
666
+ template <typename F>
667
+ FMT_CONSTEXPR void for_each_codepoint(string_view s, F f) {
668
+ auto decode = [f](const char* buf_ptr, const char* ptr) {
669
+ auto cp = uint32_t();
670
+ auto error = 0;
671
+ auto end = utf8_decode(buf_ptr, &cp, &error);
672
+ bool result = f(error ? invalid_code_point : cp,
673
+ string_view(ptr, error ? 1 : to_unsigned(end - buf_ptr)));
674
+ return result ? (error ? buf_ptr + 1 : end) : nullptr;
675
+ };
676
+ auto p = s.data();
677
+ const size_t block_size = 4; // utf8_decode always reads blocks of 4 chars.
678
+ if (s.size() >= block_size) {
679
+ for (auto end = p + s.size() - block_size + 1; p < end;) {
680
+ p = decode(p, p);
681
+ if (!p) return;
682
+ }
683
+ }
684
+ if (auto num_chars_left = s.data() + s.size() - p) {
685
+ char buf[2 * block_size - 1] = {};
686
+ copy_str<char>(p, p + num_chars_left, buf);
687
+ const char* buf_ptr = buf;
688
+ do {
689
+ auto end = decode(buf_ptr, p);
690
+ if (!end) return;
691
+ p += end - buf_ptr;
692
+ buf_ptr = end;
693
+ } while (buf_ptr - buf < num_chars_left);
694
+ }
695
+ }
696
+
697
+ template <typename Char>
698
+ inline auto compute_width(basic_string_view<Char> s) -> size_t {
699
+ return s.size();
700
+ }
701
+
702
+ // Computes approximate display width of a UTF-8 string.
703
+ FMT_CONSTEXPR inline auto compute_width(string_view s) -> size_t {
704
+ size_t num_code_points = 0;
705
+ // It is not a lambda for compatibility with C++14.
706
+ struct count_code_points {
707
+ size_t* count;
708
+ FMT_CONSTEXPR auto operator()(uint32_t cp, string_view) const -> bool {
709
+ *count += detail::to_unsigned(
710
+ 1 +
711
+ (cp >= 0x1100 &&
712
+ (cp <= 0x115f || // Hangul Jamo init. consonants
713
+ cp == 0x2329 || // LEFT-POINTING ANGLE BRACKET
714
+ cp == 0x232a || // RIGHT-POINTING ANGLE BRACKET
715
+ // CJK ... Yi except IDEOGRAPHIC HALF FILL SPACE:
716
+ (cp >= 0x2e80 && cp <= 0xa4cf && cp != 0x303f) ||
717
+ (cp >= 0xac00 && cp <= 0xd7a3) || // Hangul Syllables
718
+ (cp >= 0xf900 && cp <= 0xfaff) || // CJK Compatibility Ideographs
719
+ (cp >= 0xfe10 && cp <= 0xfe19) || // Vertical Forms
720
+ (cp >= 0xfe30 && cp <= 0xfe6f) || // CJK Compatibility Forms
721
+ (cp >= 0xff00 && cp <= 0xff60) || // Fullwidth Forms
722
+ (cp >= 0xffe0 && cp <= 0xffe6) || // Fullwidth Forms
723
+ (cp >= 0x20000 && cp <= 0x2fffd) || // CJK
724
+ (cp >= 0x30000 && cp <= 0x3fffd) ||
725
+ // Miscellaneous Symbols and Pictographs + Emoticons:
726
+ (cp >= 0x1f300 && cp <= 0x1f64f) ||
727
+ // Supplemental Symbols and Pictographs:
728
+ (cp >= 0x1f900 && cp <= 0x1f9ff))));
729
+ return true;
730
+ }
731
+ };
732
+ // We could avoid branches by using utf8_decode directly.
733
+ for_each_codepoint(s, count_code_points{&num_code_points});
734
+ return num_code_points;
735
+ }
736
+
737
+ inline auto compute_width(basic_string_view<char8_type> s) -> size_t {
738
+ return compute_width(
739
+ string_view(reinterpret_cast<const char*>(s.data()), s.size()));
740
+ }
741
+
742
+ template <typename Char>
743
+ inline auto code_point_index(basic_string_view<Char> s, size_t n) -> size_t {
744
+ size_t size = s.size();
745
+ return n < size ? n : size;
746
+ }
747
+
748
+ // Calculates the index of the nth code point in a UTF-8 string.
749
+ inline auto code_point_index(string_view s, size_t n) -> size_t {
750
+ size_t result = s.size();
751
+ const char* begin = s.begin();
752
+ for_each_codepoint(s, [begin, &n, &result](uint32_t, string_view sv) {
753
+ if (n != 0) {
754
+ --n;
755
+ return true;
756
+ }
757
+ result = to_unsigned(sv.begin() - begin);
758
+ return false;
759
+ });
760
+ return result;
761
+ }
762
+
763
+ inline auto code_point_index(basic_string_view<char8_type> s, size_t n)
764
+ -> size_t {
765
+ return code_point_index(
766
+ string_view(reinterpret_cast<const char*>(s.data()), s.size()), n);
767
+ }
768
+
769
+ template <typename T> struct is_integral : std::is_integral<T> {};
770
+ template <> struct is_integral<int128_opt> : std::true_type {};
771
+ template <> struct is_integral<uint128_t> : std::true_type {};
772
+
773
+ template <typename T>
774
+ using is_signed =
775
+ std::integral_constant<bool, std::numeric_limits<T>::is_signed ||
776
+ std::is_same<T, int128_opt>::value>;
777
+
778
+ template <typename T>
779
+ using is_integer =
780
+ bool_constant<is_integral<T>::value && !std::is_same<T, bool>::value &&
781
+ !std::is_same<T, char>::value &&
782
+ !std::is_same<T, wchar_t>::value>;
783
+
784
+ #ifndef FMT_USE_FLOAT
785
+ # define FMT_USE_FLOAT 1
786
+ #endif
787
+ #ifndef FMT_USE_DOUBLE
788
+ # define FMT_USE_DOUBLE 1
789
+ #endif
790
+ #ifndef FMT_USE_LONG_DOUBLE
791
+ # define FMT_USE_LONG_DOUBLE 1
792
+ #endif
793
+
794
+ #ifndef FMT_USE_FLOAT128
795
+ # ifdef __clang__
796
+ // Clang emulates GCC, so it has to appear early.
797
+ # if FMT_HAS_INCLUDE(<quadmath.h>)
798
+ # define FMT_USE_FLOAT128 1
799
+ # endif
800
+ # elif defined(__GNUC__)
801
+ // GNU C++:
802
+ # if defined(_GLIBCXX_USE_FLOAT128) && !defined(__STRICT_ANSI__)
803
+ # define FMT_USE_FLOAT128 1
804
+ # endif
805
+ # endif
806
+ # ifndef FMT_USE_FLOAT128
807
+ # define FMT_USE_FLOAT128 0
808
+ # endif
809
+ #endif
810
+
811
+ #if FMT_USE_FLOAT128
812
+ using float128 = __float128;
813
+ #else
814
+ using float128 = void;
815
+ #endif
816
+ template <typename T> using is_float128 = std::is_same<T, float128>;
817
+
818
+ template <typename T>
819
+ using is_floating_point =
820
+ bool_constant<std::is_floating_point<T>::value || is_float128<T>::value>;
821
+
822
+ template <typename T, bool = std::is_floating_point<T>::value>
823
+ struct is_fast_float : bool_constant<std::numeric_limits<T>::is_iec559 &&
824
+ sizeof(T) <= sizeof(double)> {};
825
+ template <typename T> struct is_fast_float<T, false> : std::false_type {};
826
+
827
+ template <typename T>
828
+ using is_double_double = bool_constant<std::numeric_limits<T>::digits == 106>;
829
+
830
+ #ifndef FMT_USE_FULL_CACHE_DRAGONBOX
831
+ # define FMT_USE_FULL_CACHE_DRAGONBOX 0
832
+ #endif
833
+
834
+ template <typename T>
835
+ template <typename U>
836
+ void buffer<T>::append(const U* begin, const U* end) {
837
+ while (begin != end) {
838
+ auto count = to_unsigned(end - begin);
839
+ try_reserve(size_ + count);
840
+ auto free_cap = capacity_ - size_;
841
+ if (free_cap < count) count = free_cap;
842
+ std::uninitialized_copy_n(begin, count, ptr_ + size_);
843
+ size_ += count;
844
+ begin += count;
845
+ }
846
+ }
847
+
848
+ template <typename T, typename Enable = void>
849
+ struct is_locale : std::false_type {};
850
+ template <typename T>
851
+ struct is_locale<T, void_t<decltype(T::classic())>> : std::true_type {};
852
+ } // namespace detail
853
+
854
+ FMT_BEGIN_EXPORT
855
+
856
+ // The number of characters to store in the basic_memory_buffer object itself
857
+ // to avoid dynamic memory allocation.
858
+ enum { inline_buffer_size = 500 };
859
+
860
+ /**
861
+ \rst
862
+ A dynamically growing memory buffer for trivially copyable/constructible types
863
+ with the first ``SIZE`` elements stored in the object itself.
864
+
865
+ You can use the ``memory_buffer`` type alias for ``char`` instead.
866
+
867
+ **Example**::
868
+
869
+ auto out = fmt::memory_buffer();
870
+ fmt::format_to(std::back_inserter(out), "The answer is {}.", 42);
871
+
872
+ This will append the following output to the ``out`` object:
873
+
874
+ .. code-block:: none
875
+
876
+ The answer is 42.
877
+
878
+ The output can be converted to an ``std::string`` with ``to_string(out)``.
879
+ \endrst
880
+ */
881
+ template <typename T, size_t SIZE = inline_buffer_size,
882
+ typename Allocator = std::allocator<T>>
883
+ class basic_memory_buffer final : public detail::buffer<T> {
884
+ private:
885
+ T store_[SIZE];
886
+
887
+ // Don't inherit from Allocator to avoid generating type_info for it.
888
+ FMT_NO_UNIQUE_ADDRESS Allocator alloc_;
889
+
890
+ // Deallocate memory allocated by the buffer.
891
+ FMT_CONSTEXPR20 void deallocate() {
892
+ T* data = this->data();
893
+ if (data != store_) alloc_.deallocate(data, this->capacity());
894
+ }
895
+
896
+ protected:
897
+ FMT_CONSTEXPR20 void grow(size_t size) override {
898
+ detail::abort_fuzzing_if(size > 5000);
899
+ const size_t max_size = std::allocator_traits<Allocator>::max_size(alloc_);
900
+ size_t old_capacity = this->capacity();
901
+ size_t new_capacity = old_capacity + old_capacity / 2;
902
+ if (size > new_capacity)
903
+ new_capacity = size;
904
+ else if (new_capacity > max_size)
905
+ new_capacity = size > max_size ? size : max_size;
906
+ T* old_data = this->data();
907
+ T* new_data =
908
+ std::allocator_traits<Allocator>::allocate(alloc_, new_capacity);
909
+ // Suppress a bogus -Wstringop-overflow in gcc 13.1 (#3481).
910
+ detail::assume(this->size() <= new_capacity);
911
+ // The following code doesn't throw, so the raw pointer above doesn't leak.
912
+ std::uninitialized_copy_n(old_data, this->size(), new_data);
913
+ this->set(new_data, new_capacity);
914
+ // deallocate must not throw according to the standard, but even if it does,
915
+ // the buffer already uses the new storage and will deallocate it in
916
+ // destructor.
917
+ if (old_data != store_) alloc_.deallocate(old_data, old_capacity);
918
+ }
919
+
920
+ public:
921
+ using value_type = T;
922
+ using const_reference = const T&;
923
+
924
+ FMT_CONSTEXPR20 explicit basic_memory_buffer(
925
+ const Allocator& alloc = Allocator())
926
+ : alloc_(alloc) {
927
+ this->set(store_, SIZE);
928
+ if (detail::is_constant_evaluated()) detail::fill_n(store_, SIZE, T());
929
+ }
930
+ FMT_CONSTEXPR20 ~basic_memory_buffer() { deallocate(); }
931
+
932
+ private:
933
+ // Move data from other to this buffer.
934
+ FMT_CONSTEXPR20 void move(basic_memory_buffer& other) {
935
+ alloc_ = std::move(other.alloc_);
936
+ T* data = other.data();
937
+ size_t size = other.size(), capacity = other.capacity();
938
+ if (data == other.store_) {
939
+ this->set(store_, capacity);
940
+ detail::copy_str<T>(other.store_, other.store_ + size, store_);
941
+ } else {
942
+ this->set(data, capacity);
943
+ // Set pointer to the inline array so that delete is not called
944
+ // when deallocating.
945
+ other.set(other.store_, 0);
946
+ other.clear();
947
+ }
948
+ this->resize(size);
949
+ }
950
+
951
+ public:
952
+ /**
953
+ \rst
954
+ Constructs a :class:`fmt::basic_memory_buffer` object moving the content
955
+ of the other object to it.
956
+ \endrst
957
+ */
958
+ FMT_CONSTEXPR20 basic_memory_buffer(basic_memory_buffer&& other) noexcept {
959
+ move(other);
960
+ }
961
+
962
+ /**
963
+ \rst
964
+ Moves the content of the other ``basic_memory_buffer`` object to this one.
965
+ \endrst
966
+ */
967
+ auto operator=(basic_memory_buffer&& other) noexcept -> basic_memory_buffer& {
968
+ FMT_ASSERT(this != &other, "");
969
+ deallocate();
970
+ move(other);
971
+ return *this;
972
+ }
973
+
974
+ // Returns a copy of the allocator associated with this buffer.
975
+ auto get_allocator() const -> Allocator { return alloc_; }
976
+
977
+ /**
978
+ Resizes the buffer to contain *count* elements. If T is a POD type new
979
+ elements may not be initialized.
980
+ */
981
+ FMT_CONSTEXPR20 void resize(size_t count) { this->try_resize(count); }
982
+
983
+ /** Increases the buffer capacity to *new_capacity*. */
984
+ void reserve(size_t new_capacity) { this->try_reserve(new_capacity); }
985
+
986
+ using detail::buffer<T>::append;
987
+ template <typename ContiguousRange>
988
+ void append(const ContiguousRange& range) {
989
+ append(range.data(), range.data() + range.size());
990
+ }
991
+ };
992
+
993
+ using memory_buffer = basic_memory_buffer<char>;
994
+
995
+ template <typename T, size_t SIZE, typename Allocator>
996
+ struct is_contiguous<basic_memory_buffer<T, SIZE, Allocator>> : std::true_type {
997
+ };
998
+
999
+ FMT_END_EXPORT
1000
+ namespace detail {
1001
+ FMT_API auto write_console(int fd, string_view text) -> bool;
1002
+ FMT_API auto write_console(std::FILE* f, string_view text) -> bool;
1003
+ FMT_API void print(std::FILE*, string_view);
1004
+ } // namespace detail
1005
+
1006
+ FMT_BEGIN_EXPORT
1007
+
1008
+ // Suppress a misleading warning in older versions of clang.
1009
+ #if FMT_CLANG_VERSION
1010
+ # pragma clang diagnostic ignored "-Wweak-vtables"
1011
+ #endif
1012
+
1013
+ /** An error reported from a formatting function. */
1014
+ class FMT_SO_VISIBILITY("default") format_error : public std::runtime_error {
1015
+ public:
1016
+ using std::runtime_error::runtime_error;
1017
+ };
1018
+
1019
+ namespace detail_exported {
1020
+ #if FMT_USE_NONTYPE_TEMPLATE_ARGS
1021
+ template <typename Char, size_t N> struct fixed_string {
1022
+ constexpr fixed_string(const Char (&str)[N]) {
1023
+ detail::copy_str<Char, const Char*, Char*>(static_cast<const Char*>(str),
1024
+ str + N, data);
1025
+ }
1026
+ Char data[N] = {};
1027
+ };
1028
+ #endif
1029
+
1030
+ // Converts a compile-time string to basic_string_view.
1031
+ template <typename Char, size_t N>
1032
+ constexpr auto compile_string_to_view(const Char (&s)[N])
1033
+ -> basic_string_view<Char> {
1034
+ // Remove trailing NUL character if needed. Won't be present if this is used
1035
+ // with a raw character array (i.e. not defined as a string).
1036
+ return {s, N - (std::char_traits<Char>::to_int_type(s[N - 1]) == 0 ? 1 : 0)};
1037
+ }
1038
+ template <typename Char>
1039
+ constexpr auto compile_string_to_view(detail::std_string_view<Char> s)
1040
+ -> basic_string_view<Char> {
1041
+ return {s.data(), s.size()};
1042
+ }
1043
+ } // namespace detail_exported
1044
+
1045
+ class loc_value {
1046
+ private:
1047
+ basic_format_arg<format_context> value_;
1048
+
1049
+ public:
1050
+ template <typename T, FMT_ENABLE_IF(!detail::is_float128<T>::value)>
1051
+ loc_value(T value) : value_(detail::make_arg<format_context>(value)) {}
1052
+
1053
+ template <typename T, FMT_ENABLE_IF(detail::is_float128<T>::value)>
1054
+ loc_value(T) {}
1055
+
1056
+ template <typename Visitor> auto visit(Visitor&& vis) -> decltype(vis(0)) {
1057
+ return visit_format_arg(vis, value_);
1058
+ }
1059
+ };
1060
+
1061
+ // A locale facet that formats values in UTF-8.
1062
+ // It is parameterized on the locale to avoid the heavy <locale> include.
1063
+ template <typename Locale> class format_facet : public Locale::facet {
1064
+ private:
1065
+ std::string separator_;
1066
+ std::string grouping_;
1067
+ std::string decimal_point_;
1068
+
1069
+ protected:
1070
+ virtual auto do_put(appender out, loc_value val,
1071
+ const format_specs<>& specs) const -> bool;
1072
+
1073
+ public:
1074
+ static FMT_API typename Locale::id id;
1075
+
1076
+ explicit format_facet(Locale& loc);
1077
+ explicit format_facet(string_view sep = "",
1078
+ std::initializer_list<unsigned char> g = {3},
1079
+ std::string decimal_point = ".")
1080
+ : separator_(sep.data(), sep.size()),
1081
+ grouping_(g.begin(), g.end()),
1082
+ decimal_point_(decimal_point) {}
1083
+
1084
+ auto put(appender out, loc_value val, const format_specs<>& specs) const
1085
+ -> bool {
1086
+ return do_put(out, val, specs);
1087
+ }
1088
+ };
1089
+
1090
+ namespace detail {
1091
+
1092
+ // Returns true if value is negative, false otherwise.
1093
+ // Same as `value < 0` but doesn't produce warnings if T is an unsigned type.
1094
+ template <typename T, FMT_ENABLE_IF(is_signed<T>::value)>
1095
+ constexpr auto is_negative(T value) -> bool {
1096
+ return value < 0;
1097
+ }
1098
+ template <typename T, FMT_ENABLE_IF(!is_signed<T>::value)>
1099
+ constexpr auto is_negative(T) -> bool {
1100
+ return false;
1101
+ }
1102
+
1103
+ template <typename T>
1104
+ FMT_CONSTEXPR auto is_supported_floating_point(T) -> bool {
1105
+ if (std::is_same<T, float>()) return FMT_USE_FLOAT;
1106
+ if (std::is_same<T, double>()) return FMT_USE_DOUBLE;
1107
+ if (std::is_same<T, long double>()) return FMT_USE_LONG_DOUBLE;
1108
+ return true;
1109
+ }
1110
+
1111
+ // Smallest of uint32_t, uint64_t, uint128_t that is large enough to
1112
+ // represent all values of an integral type T.
1113
+ template <typename T>
1114
+ using uint32_or_64_or_128_t =
1115
+ conditional_t<num_bits<T>() <= 32 && !FMT_REDUCE_INT_INSTANTIATIONS,
1116
+ uint32_t,
1117
+ conditional_t<num_bits<T>() <= 64, uint64_t, uint128_t>>;
1118
+ template <typename T>
1119
+ using uint64_or_128_t = conditional_t<num_bits<T>() <= 64, uint64_t, uint128_t>;
1120
+
1121
+ #define FMT_POWERS_OF_10(factor) \
1122
+ factor * 10, (factor) * 100, (factor) * 1000, (factor) * 10000, \
1123
+ (factor) * 100000, (factor) * 1000000, (factor) * 10000000, \
1124
+ (factor) * 100000000, (factor) * 1000000000
1125
+
1126
+ // Converts value in the range [0, 100) to a string.
1127
+ constexpr auto digits2(size_t value) -> const char* {
1128
+ // GCC generates slightly better code when value is pointer-size.
1129
+ return &"0001020304050607080910111213141516171819"
1130
+ "2021222324252627282930313233343536373839"
1131
+ "4041424344454647484950515253545556575859"
1132
+ "6061626364656667686970717273747576777879"
1133
+ "8081828384858687888990919293949596979899"[value * 2];
1134
+ }
1135
+
1136
+ // Sign is a template parameter to workaround a bug in gcc 4.8.
1137
+ template <typename Char, typename Sign> constexpr auto sign(Sign s) -> Char {
1138
+ #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 604
1139
+ static_assert(std::is_same<Sign, sign_t>::value, "");
1140
+ #endif
1141
+ return static_cast<Char>("\0-+ "[s]);
1142
+ }
1143
+
1144
+ template <typename T> FMT_CONSTEXPR auto count_digits_fallback(T n) -> int {
1145
+ int count = 1;
1146
+ for (;;) {
1147
+ // Integer division is slow so do it for a group of four digits instead
1148
+ // of for every digit. The idea comes from the talk by Alexandrescu
1149
+ // "Three Optimization Tips for C++". See speed-test for a comparison.
1150
+ if (n < 10) return count;
1151
+ if (n < 100) return count + 1;
1152
+ if (n < 1000) return count + 2;
1153
+ if (n < 10000) return count + 3;
1154
+ n /= 10000u;
1155
+ count += 4;
1156
+ }
1157
+ }
1158
+ #if FMT_USE_INT128
1159
+ FMT_CONSTEXPR inline auto count_digits(uint128_opt n) -> int {
1160
+ return count_digits_fallback(n);
1161
+ }
1162
+ #endif
1163
+
1164
+ #ifdef FMT_BUILTIN_CLZLL
1165
+ // It is a separate function rather than a part of count_digits to workaround
1166
+ // the lack of static constexpr in constexpr functions.
1167
+ inline auto do_count_digits(uint64_t n) -> int {
1168
+ // This has comparable performance to the version by Kendall Willets
1169
+ // (https://github.com/fmtlib/format-benchmark/blob/master/digits10)
1170
+ // but uses smaller tables.
1171
+ // Maps bsr(n) to ceil(log10(pow(2, bsr(n) + 1) - 1)).
1172
+ static constexpr uint8_t bsr2log10[] = {
1173
+ 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5,
1174
+ 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, 10, 10,
1175
+ 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 15, 15,
1176
+ 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 19, 19, 19, 20};
1177
+ auto t = bsr2log10[FMT_BUILTIN_CLZLL(n | 1) ^ 63];
1178
+ static constexpr const uint64_t zero_or_powers_of_10[] = {
1179
+ 0, 0, FMT_POWERS_OF_10(1U), FMT_POWERS_OF_10(1000000000ULL),
1180
+ 10000000000000000000ULL};
1181
+ return t - (n < zero_or_powers_of_10[t]);
1182
+ }
1183
+ #endif
1184
+
1185
+ // Returns the number of decimal digits in n. Leading zeros are not counted
1186
+ // except for n == 0 in which case count_digits returns 1.
1187
+ FMT_CONSTEXPR20 inline auto count_digits(uint64_t n) -> int {
1188
+ #ifdef FMT_BUILTIN_CLZLL
1189
+ if (!is_constant_evaluated()) {
1190
+ return do_count_digits(n);
1191
+ }
1192
+ #endif
1193
+ return count_digits_fallback(n);
1194
+ }
1195
+
1196
+ // Counts the number of digits in n. BITS = log2(radix).
1197
+ template <int BITS, typename UInt>
1198
+ FMT_CONSTEXPR auto count_digits(UInt n) -> int {
1199
+ #ifdef FMT_BUILTIN_CLZ
1200
+ if (!is_constant_evaluated() && num_bits<UInt>() == 32)
1201
+ return (FMT_BUILTIN_CLZ(static_cast<uint32_t>(n) | 1) ^ 31) / BITS + 1;
1202
+ #endif
1203
+ // Lambda avoids unreachable code warnings from NVHPC.
1204
+ return [](UInt m) {
1205
+ int num_digits = 0;
1206
+ do {
1207
+ ++num_digits;
1208
+ } while ((m >>= BITS) != 0);
1209
+ return num_digits;
1210
+ }(n);
1211
+ }
1212
+
1213
+ #ifdef FMT_BUILTIN_CLZ
1214
+ // It is a separate function rather than a part of count_digits to workaround
1215
+ // the lack of static constexpr in constexpr functions.
1216
+ FMT_INLINE auto do_count_digits(uint32_t n) -> int {
1217
+ // An optimization by Kendall Willets from https://bit.ly/3uOIQrB.
1218
+ // This increments the upper 32 bits (log10(T) - 1) when >= T is added.
1219
+ # define FMT_INC(T) (((sizeof(#T) - 1ull) << 32) - T)
1220
+ static constexpr uint64_t table[] = {
1221
+ FMT_INC(0), FMT_INC(0), FMT_INC(0), // 8
1222
+ FMT_INC(10), FMT_INC(10), FMT_INC(10), // 64
1223
+ FMT_INC(100), FMT_INC(100), FMT_INC(100), // 512
1224
+ FMT_INC(1000), FMT_INC(1000), FMT_INC(1000), // 4096
1225
+ FMT_INC(10000), FMT_INC(10000), FMT_INC(10000), // 32k
1226
+ FMT_INC(100000), FMT_INC(100000), FMT_INC(100000), // 256k
1227
+ FMT_INC(1000000), FMT_INC(1000000), FMT_INC(1000000), // 2048k
1228
+ FMT_INC(10000000), FMT_INC(10000000), FMT_INC(10000000), // 16M
1229
+ FMT_INC(100000000), FMT_INC(100000000), FMT_INC(100000000), // 128M
1230
+ FMT_INC(1000000000), FMT_INC(1000000000), FMT_INC(1000000000), // 1024M
1231
+ FMT_INC(1000000000), FMT_INC(1000000000) // 4B
1232
+ };
1233
+ auto inc = table[FMT_BUILTIN_CLZ(n | 1) ^ 31];
1234
+ return static_cast<int>((n + inc) >> 32);
1235
+ }
1236
+ #endif
1237
+
1238
+ // Optional version of count_digits for better performance on 32-bit platforms.
1239
+ FMT_CONSTEXPR20 inline auto count_digits(uint32_t n) -> int {
1240
+ #ifdef FMT_BUILTIN_CLZ
1241
+ if (!is_constant_evaluated()) {
1242
+ return do_count_digits(n);
1243
+ }
1244
+ #endif
1245
+ return count_digits_fallback(n);
1246
+ }
1247
+
1248
+ template <typename Int> constexpr auto digits10() noexcept -> int {
1249
+ return std::numeric_limits<Int>::digits10;
1250
+ }
1251
+ template <> constexpr auto digits10<int128_opt>() noexcept -> int { return 38; }
1252
+ template <> constexpr auto digits10<uint128_t>() noexcept -> int { return 38; }
1253
+
1254
+ template <typename Char> struct thousands_sep_result {
1255
+ std::string grouping;
1256
+ Char thousands_sep;
1257
+ };
1258
+
1259
+ template <typename Char>
1260
+ FMT_API auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result<Char>;
1261
+ template <typename Char>
1262
+ inline auto thousands_sep(locale_ref loc) -> thousands_sep_result<Char> {
1263
+ auto result = thousands_sep_impl<char>(loc);
1264
+ return {result.grouping, Char(result.thousands_sep)};
1265
+ }
1266
+ template <>
1267
+ inline auto thousands_sep(locale_ref loc) -> thousands_sep_result<wchar_t> {
1268
+ return thousands_sep_impl<wchar_t>(loc);
1269
+ }
1270
+
1271
+ template <typename Char>
1272
+ FMT_API auto decimal_point_impl(locale_ref loc) -> Char;
1273
+ template <typename Char> inline auto decimal_point(locale_ref loc) -> Char {
1274
+ return Char(decimal_point_impl<char>(loc));
1275
+ }
1276
+ template <> inline auto decimal_point(locale_ref loc) -> wchar_t {
1277
+ return decimal_point_impl<wchar_t>(loc);
1278
+ }
1279
+
1280
+ // Compares two characters for equality.
1281
+ template <typename Char> auto equal2(const Char* lhs, const char* rhs) -> bool {
1282
+ return lhs[0] == Char(rhs[0]) && lhs[1] == Char(rhs[1]);
1283
+ }
1284
+ inline auto equal2(const char* lhs, const char* rhs) -> bool {
1285
+ return memcmp(lhs, rhs, 2) == 0;
1286
+ }
1287
+
1288
+ // Copies two characters from src to dst.
1289
+ template <typename Char>
1290
+ FMT_CONSTEXPR20 FMT_INLINE void copy2(Char* dst, const char* src) {
1291
+ if (!is_constant_evaluated() && sizeof(Char) == sizeof(char)) {
1292
+ memcpy(dst, src, 2);
1293
+ return;
1294
+ }
1295
+ *dst++ = static_cast<Char>(*src++);
1296
+ *dst = static_cast<Char>(*src);
1297
+ }
1298
+
1299
+ template <typename Iterator> struct format_decimal_result {
1300
+ Iterator begin;
1301
+ Iterator end;
1302
+ };
1303
+
1304
+ // Formats a decimal unsigned integer value writing into out pointing to a
1305
+ // buffer of specified size. The caller must ensure that the buffer is large
1306
+ // enough.
1307
+ template <typename Char, typename UInt>
1308
+ FMT_CONSTEXPR20 auto format_decimal(Char* out, UInt value, int size)
1309
+ -> format_decimal_result<Char*> {
1310
+ FMT_ASSERT(size >= count_digits(value), "invalid digit count");
1311
+ out += size;
1312
+ Char* end = out;
1313
+ while (value >= 100) {
1314
+ // Integer division is slow so do it for a group of two digits instead
1315
+ // of for every digit. The idea comes from the talk by Alexandrescu
1316
+ // "Three Optimization Tips for C++". See speed-test for a comparison.
1317
+ out -= 2;
1318
+ copy2(out, digits2(static_cast<size_t>(value % 100)));
1319
+ value /= 100;
1320
+ }
1321
+ if (value < 10) {
1322
+ *--out = static_cast<Char>('0' + value);
1323
+ return {out, end};
1324
+ }
1325
+ out -= 2;
1326
+ copy2(out, digits2(static_cast<size_t>(value)));
1327
+ return {out, end};
1328
+ }
1329
+
1330
+ template <typename Char, typename UInt, typename Iterator,
1331
+ FMT_ENABLE_IF(!std::is_pointer<remove_cvref_t<Iterator>>::value)>
1332
+ FMT_CONSTEXPR inline auto format_decimal(Iterator out, UInt value, int size)
1333
+ -> format_decimal_result<Iterator> {
1334
+ // Buffer is large enough to hold all digits (digits10 + 1).
1335
+ Char buffer[digits10<UInt>() + 1] = {};
1336
+ auto end = format_decimal(buffer, value, size).end;
1337
+ return {out, detail::copy_str_noinline<Char>(buffer, end, out)};
1338
+ }
1339
+
1340
+ template <unsigned BASE_BITS, typename Char, typename UInt>
1341
+ FMT_CONSTEXPR auto format_uint(Char* buffer, UInt value, int num_digits,
1342
+ bool upper = false) -> Char* {
1343
+ buffer += num_digits;
1344
+ Char* end = buffer;
1345
+ do {
1346
+ const char* digits = upper ? "0123456789ABCDEF" : "0123456789abcdef";
1347
+ unsigned digit = static_cast<unsigned>(value & ((1 << BASE_BITS) - 1));
1348
+ *--buffer = static_cast<Char>(BASE_BITS < 4 ? static_cast<char>('0' + digit)
1349
+ : digits[digit]);
1350
+ } while ((value >>= BASE_BITS) != 0);
1351
+ return end;
1352
+ }
1353
+
1354
+ template <unsigned BASE_BITS, typename Char, typename It, typename UInt>
1355
+ FMT_CONSTEXPR inline auto format_uint(It out, UInt value, int num_digits,
1356
+ bool upper = false) -> It {
1357
+ if (auto ptr = to_pointer<Char>(out, to_unsigned(num_digits))) {
1358
+ format_uint<BASE_BITS>(ptr, value, num_digits, upper);
1359
+ return out;
1360
+ }
1361
+ // Buffer should be large enough to hold all digits (digits / BASE_BITS + 1).
1362
+ char buffer[num_bits<UInt>() / BASE_BITS + 1] = {};
1363
+ format_uint<BASE_BITS>(buffer, value, num_digits, upper);
1364
+ return detail::copy_str_noinline<Char>(buffer, buffer + num_digits, out);
1365
+ }
1366
+
1367
+ // A converter from UTF-8 to UTF-16.
1368
+ class utf8_to_utf16 {
1369
+ private:
1370
+ basic_memory_buffer<wchar_t> buffer_;
1371
+
1372
+ public:
1373
+ FMT_API explicit utf8_to_utf16(string_view s);
1374
+ operator basic_string_view<wchar_t>() const { return {&buffer_[0], size()}; }
1375
+ auto size() const -> size_t { return buffer_.size() - 1; }
1376
+ auto c_str() const -> const wchar_t* { return &buffer_[0]; }
1377
+ auto str() const -> std::wstring { return {&buffer_[0], size()}; }
1378
+ };
1379
+
1380
+ enum class to_utf8_error_policy { abort, replace };
1381
+
1382
+ // A converter from UTF-16/UTF-32 (host endian) to UTF-8.
1383
+ template <typename WChar, typename Buffer = memory_buffer> class to_utf8 {
1384
+ private:
1385
+ Buffer buffer_;
1386
+
1387
+ public:
1388
+ to_utf8() {}
1389
+ explicit to_utf8(basic_string_view<WChar> s,
1390
+ to_utf8_error_policy policy = to_utf8_error_policy::abort) {
1391
+ static_assert(sizeof(WChar) == 2 || sizeof(WChar) == 4,
1392
+ "Expect utf16 or utf32");
1393
+ if (!convert(s, policy))
1394
+ FMT_THROW(std::runtime_error(sizeof(WChar) == 2 ? "invalid utf16"
1395
+ : "invalid utf32"));
1396
+ }
1397
+ operator string_view() const { return string_view(&buffer_[0], size()); }
1398
+ auto size() const -> size_t { return buffer_.size() - 1; }
1399
+ auto c_str() const -> const char* { return &buffer_[0]; }
1400
+ auto str() const -> std::string { return std::string(&buffer_[0], size()); }
1401
+
1402
+ // Performs conversion returning a bool instead of throwing exception on
1403
+ // conversion error. This method may still throw in case of memory allocation
1404
+ // error.
1405
+ auto convert(basic_string_view<WChar> s,
1406
+ to_utf8_error_policy policy = to_utf8_error_policy::abort)
1407
+ -> bool {
1408
+ if (!convert(buffer_, s, policy)) return false;
1409
+ buffer_.push_back(0);
1410
+ return true;
1411
+ }
1412
+ static auto convert(Buffer& buf, basic_string_view<WChar> s,
1413
+ to_utf8_error_policy policy = to_utf8_error_policy::abort)
1414
+ -> bool {
1415
+ for (auto p = s.begin(); p != s.end(); ++p) {
1416
+ uint32_t c = static_cast<uint32_t>(*p);
1417
+ if (sizeof(WChar) == 2 && c >= 0xd800 && c <= 0xdfff) {
1418
+ // Handle a surrogate pair.
1419
+ ++p;
1420
+ if (p == s.end() || (c & 0xfc00) != 0xd800 || (*p & 0xfc00) != 0xdc00) {
1421
+ if (policy == to_utf8_error_policy::abort) return false;
1422
+ buf.append(string_view("\xEF\xBF\xBD"));
1423
+ --p;
1424
+ } else {
1425
+ c = (c << 10) + static_cast<uint32_t>(*p) - 0x35fdc00;
1426
+ }
1427
+ } else if (c < 0x80) {
1428
+ buf.push_back(static_cast<char>(c));
1429
+ } else if (c < 0x800) {
1430
+ buf.push_back(static_cast<char>(0xc0 | (c >> 6)));
1431
+ buf.push_back(static_cast<char>(0x80 | (c & 0x3f)));
1432
+ } else if ((c >= 0x800 && c <= 0xd7ff) || (c >= 0xe000 && c <= 0xffff)) {
1433
+ buf.push_back(static_cast<char>(0xe0 | (c >> 12)));
1434
+ buf.push_back(static_cast<char>(0x80 | ((c & 0xfff) >> 6)));
1435
+ buf.push_back(static_cast<char>(0x80 | (c & 0x3f)));
1436
+ } else if (c >= 0x10000 && c <= 0x10ffff) {
1437
+ buf.push_back(static_cast<char>(0xf0 | (c >> 18)));
1438
+ buf.push_back(static_cast<char>(0x80 | ((c & 0x3ffff) >> 12)));
1439
+ buf.push_back(static_cast<char>(0x80 | ((c & 0xfff) >> 6)));
1440
+ buf.push_back(static_cast<char>(0x80 | (c & 0x3f)));
1441
+ } else {
1442
+ return false;
1443
+ }
1444
+ }
1445
+ return true;
1446
+ }
1447
+ };
1448
+
1449
+ // Computes 128-bit result of multiplication of two 64-bit unsigned integers.
1450
+ inline auto umul128(uint64_t x, uint64_t y) noexcept -> uint128_fallback {
1451
+ #if FMT_USE_INT128
1452
+ auto p = static_cast<uint128_opt>(x) * static_cast<uint128_opt>(y);
1453
+ return {static_cast<uint64_t>(p >> 64), static_cast<uint64_t>(p)};
1454
+ #elif defined(_MSC_VER) && defined(_M_X64)
1455
+ auto hi = uint64_t();
1456
+ auto lo = _umul128(x, y, &hi);
1457
+ return {hi, lo};
1458
+ #else
1459
+ const uint64_t mask = static_cast<uint64_t>(max_value<uint32_t>());
1460
+
1461
+ uint64_t a = x >> 32;
1462
+ uint64_t b = x & mask;
1463
+ uint64_t c = y >> 32;
1464
+ uint64_t d = y & mask;
1465
+
1466
+ uint64_t ac = a * c;
1467
+ uint64_t bc = b * c;
1468
+ uint64_t ad = a * d;
1469
+ uint64_t bd = b * d;
1470
+
1471
+ uint64_t intermediate = (bd >> 32) + (ad & mask) + (bc & mask);
1472
+
1473
+ return {ac + (intermediate >> 32) + (ad >> 32) + (bc >> 32),
1474
+ (intermediate << 32) + (bd & mask)};
1475
+ #endif
1476
+ }
1477
+
1478
+ namespace dragonbox {
1479
+ // Computes floor(log10(pow(2, e))) for e in [-2620, 2620] using the method from
1480
+ // https://fmt.dev/papers/Dragonbox.pdf#page=28, section 6.1.
1481
+ inline auto floor_log10_pow2(int e) noexcept -> int {
1482
+ FMT_ASSERT(e <= 2620 && e >= -2620, "too large exponent");
1483
+ static_assert((-1 >> 1) == -1, "right shift is not arithmetic");
1484
+ return (e * 315653) >> 20;
1485
+ }
1486
+
1487
+ inline auto floor_log2_pow10(int e) noexcept -> int {
1488
+ FMT_ASSERT(e <= 1233 && e >= -1233, "too large exponent");
1489
+ return (e * 1741647) >> 19;
1490
+ }
1491
+
1492
+ // Computes upper 64 bits of multiplication of two 64-bit unsigned integers.
1493
+ inline auto umul128_upper64(uint64_t x, uint64_t y) noexcept -> uint64_t {
1494
+ #if FMT_USE_INT128
1495
+ auto p = static_cast<uint128_opt>(x) * static_cast<uint128_opt>(y);
1496
+ return static_cast<uint64_t>(p >> 64);
1497
+ #elif defined(_MSC_VER) && defined(_M_X64)
1498
+ return __umulh(x, y);
1499
+ #else
1500
+ return umul128(x, y).high();
1501
+ #endif
1502
+ }
1503
+
1504
+ // Computes upper 128 bits of multiplication of a 64-bit unsigned integer and a
1505
+ // 128-bit unsigned integer.
1506
+ inline auto umul192_upper128(uint64_t x, uint128_fallback y) noexcept
1507
+ -> uint128_fallback {
1508
+ uint128_fallback r = umul128(x, y.high());
1509
+ r += umul128_upper64(x, y.low());
1510
+ return r;
1511
+ }
1512
+
1513
+ FMT_API auto get_cached_power(int k) noexcept -> uint128_fallback;
1514
+
1515
+ // Type-specific information that Dragonbox uses.
1516
+ template <typename T, typename Enable = void> struct float_info;
1517
+
1518
+ template <> struct float_info<float> {
1519
+ using carrier_uint = uint32_t;
1520
+ static const int exponent_bits = 8;
1521
+ static const int kappa = 1;
1522
+ static const int big_divisor = 100;
1523
+ static const int small_divisor = 10;
1524
+ static const int min_k = -31;
1525
+ static const int max_k = 46;
1526
+ static const int shorter_interval_tie_lower_threshold = -35;
1527
+ static const int shorter_interval_tie_upper_threshold = -35;
1528
+ };
1529
+
1530
+ template <> struct float_info<double> {
1531
+ using carrier_uint = uint64_t;
1532
+ static const int exponent_bits = 11;
1533
+ static const int kappa = 2;
1534
+ static const int big_divisor = 1000;
1535
+ static const int small_divisor = 100;
1536
+ static const int min_k = -292;
1537
+ static const int max_k = 341;
1538
+ static const int shorter_interval_tie_lower_threshold = -77;
1539
+ static const int shorter_interval_tie_upper_threshold = -77;
1540
+ };
1541
+
1542
+ // An 80- or 128-bit floating point number.
1543
+ template <typename T>
1544
+ struct float_info<T, enable_if_t<std::numeric_limits<T>::digits == 64 ||
1545
+ std::numeric_limits<T>::digits == 113 ||
1546
+ is_float128<T>::value>> {
1547
+ using carrier_uint = detail::uint128_t;
1548
+ static const int exponent_bits = 15;
1549
+ };
1550
+
1551
+ // A double-double floating point number.
1552
+ template <typename T>
1553
+ struct float_info<T, enable_if_t<is_double_double<T>::value>> {
1554
+ using carrier_uint = detail::uint128_t;
1555
+ };
1556
+
1557
+ template <typename T> struct decimal_fp {
1558
+ using significand_type = typename float_info<T>::carrier_uint;
1559
+ significand_type significand;
1560
+ int exponent;
1561
+ };
1562
+
1563
+ template <typename T> FMT_API auto to_decimal(T x) noexcept -> decimal_fp<T>;
1564
+ } // namespace dragonbox
1565
+
1566
+ // Returns true iff Float has the implicit bit which is not stored.
1567
+ template <typename Float> constexpr auto has_implicit_bit() -> bool {
1568
+ // An 80-bit FP number has a 64-bit significand an no implicit bit.
1569
+ return std::numeric_limits<Float>::digits != 64;
1570
+ }
1571
+
1572
+ // Returns the number of significand bits stored in Float. The implicit bit is
1573
+ // not counted since it is not stored.
1574
+ template <typename Float> constexpr auto num_significand_bits() -> int {
1575
+ // std::numeric_limits may not support __float128.
1576
+ return is_float128<Float>() ? 112
1577
+ : (std::numeric_limits<Float>::digits -
1578
+ (has_implicit_bit<Float>() ? 1 : 0));
1579
+ }
1580
+
1581
+ template <typename Float>
1582
+ constexpr auto exponent_mask() ->
1583
+ typename dragonbox::float_info<Float>::carrier_uint {
1584
+ using float_uint = typename dragonbox::float_info<Float>::carrier_uint;
1585
+ return ((float_uint(1) << dragonbox::float_info<Float>::exponent_bits) - 1)
1586
+ << num_significand_bits<Float>();
1587
+ }
1588
+ template <typename Float> constexpr auto exponent_bias() -> int {
1589
+ // std::numeric_limits may not support __float128.
1590
+ return is_float128<Float>() ? 16383
1591
+ : std::numeric_limits<Float>::max_exponent - 1;
1592
+ }
1593
+
1594
+ // Writes the exponent exp in the form "[+-]d{2,3}" to buffer.
1595
+ template <typename Char, typename It>
1596
+ FMT_CONSTEXPR auto write_exponent(int exp, It it) -> It {
1597
+ FMT_ASSERT(-10000 < exp && exp < 10000, "exponent out of range");
1598
+ if (exp < 0) {
1599
+ *it++ = static_cast<Char>('-');
1600
+ exp = -exp;
1601
+ } else {
1602
+ *it++ = static_cast<Char>('+');
1603
+ }
1604
+ if (exp >= 100) {
1605
+ const char* top = digits2(to_unsigned(exp / 100));
1606
+ if (exp >= 1000) *it++ = static_cast<Char>(top[0]);
1607
+ *it++ = static_cast<Char>(top[1]);
1608
+ exp %= 100;
1609
+ }
1610
+ const char* d = digits2(to_unsigned(exp));
1611
+ *it++ = static_cast<Char>(d[0]);
1612
+ *it++ = static_cast<Char>(d[1]);
1613
+ return it;
1614
+ }
1615
+
1616
+ // A floating-point number f * pow(2, e) where F is an unsigned type.
1617
+ template <typename F> struct basic_fp {
1618
+ F f;
1619
+ int e;
1620
+
1621
+ static constexpr const int num_significand_bits =
1622
+ static_cast<int>(sizeof(F) * num_bits<unsigned char>());
1623
+
1624
+ constexpr basic_fp() : f(0), e(0) {}
1625
+ constexpr basic_fp(uint64_t f_val, int e_val) : f(f_val), e(e_val) {}
1626
+
1627
+ // Constructs fp from an IEEE754 floating-point number.
1628
+ template <typename Float> FMT_CONSTEXPR basic_fp(Float n) { assign(n); }
1629
+
1630
+ // Assigns n to this and return true iff predecessor is closer than successor.
1631
+ template <typename Float, FMT_ENABLE_IF(!is_double_double<Float>::value)>
1632
+ FMT_CONSTEXPR auto assign(Float n) -> bool {
1633
+ static_assert(std::numeric_limits<Float>::digits <= 113, "unsupported FP");
1634
+ // Assume Float is in the format [sign][exponent][significand].
1635
+ using carrier_uint = typename dragonbox::float_info<Float>::carrier_uint;
1636
+ const auto num_float_significand_bits =
1637
+ detail::num_significand_bits<Float>();
1638
+ const auto implicit_bit = carrier_uint(1) << num_float_significand_bits;
1639
+ const auto significand_mask = implicit_bit - 1;
1640
+ auto u = bit_cast<carrier_uint>(n);
1641
+ f = static_cast<F>(u & significand_mask);
1642
+ auto biased_e = static_cast<int>((u & exponent_mask<Float>()) >>
1643
+ num_float_significand_bits);
1644
+ // The predecessor is closer if n is a normalized power of 2 (f == 0)
1645
+ // other than the smallest normalized number (biased_e > 1).
1646
+ auto is_predecessor_closer = f == 0 && biased_e > 1;
1647
+ if (biased_e == 0)
1648
+ biased_e = 1; // Subnormals use biased exponent 1 (min exponent).
1649
+ else if (has_implicit_bit<Float>())
1650
+ f += static_cast<F>(implicit_bit);
1651
+ e = biased_e - exponent_bias<Float>() - num_float_significand_bits;
1652
+ if (!has_implicit_bit<Float>()) ++e;
1653
+ return is_predecessor_closer;
1654
+ }
1655
+
1656
+ template <typename Float, FMT_ENABLE_IF(is_double_double<Float>::value)>
1657
+ FMT_CONSTEXPR auto assign(Float n) -> bool {
1658
+ static_assert(std::numeric_limits<double>::is_iec559, "unsupported FP");
1659
+ return assign(static_cast<double>(n));
1660
+ }
1661
+ };
1662
+
1663
+ using fp = basic_fp<unsigned long long>;
1664
+
1665
+ // Normalizes the value converted from double and multiplied by (1 << SHIFT).
1666
+ template <int SHIFT = 0, typename F>
1667
+ FMT_CONSTEXPR auto normalize(basic_fp<F> value) -> basic_fp<F> {
1668
+ // Handle subnormals.
1669
+ const auto implicit_bit = F(1) << num_significand_bits<double>();
1670
+ const auto shifted_implicit_bit = implicit_bit << SHIFT;
1671
+ while ((value.f & shifted_implicit_bit) == 0) {
1672
+ value.f <<= 1;
1673
+ --value.e;
1674
+ }
1675
+ // Subtract 1 to account for hidden bit.
1676
+ const auto offset = basic_fp<F>::num_significand_bits -
1677
+ num_significand_bits<double>() - SHIFT - 1;
1678
+ value.f <<= offset;
1679
+ value.e -= offset;
1680
+ return value;
1681
+ }
1682
+
1683
+ // Computes lhs * rhs / pow(2, 64) rounded to nearest with half-up tie breaking.
1684
+ FMT_CONSTEXPR inline auto multiply(uint64_t lhs, uint64_t rhs) -> uint64_t {
1685
+ #if FMT_USE_INT128
1686
+ auto product = static_cast<__uint128_t>(lhs) * rhs;
1687
+ auto f = static_cast<uint64_t>(product >> 64);
1688
+ return (static_cast<uint64_t>(product) & (1ULL << 63)) != 0 ? f + 1 : f;
1689
+ #else
1690
+ // Multiply 32-bit parts of significands.
1691
+ uint64_t mask = (1ULL << 32) - 1;
1692
+ uint64_t a = lhs >> 32, b = lhs & mask;
1693
+ uint64_t c = rhs >> 32, d = rhs & mask;
1694
+ uint64_t ac = a * c, bc = b * c, ad = a * d, bd = b * d;
1695
+ // Compute mid 64-bit of result and round.
1696
+ uint64_t mid = (bd >> 32) + (ad & mask) + (bc & mask) + (1U << 31);
1697
+ return ac + (ad >> 32) + (bc >> 32) + (mid >> 32);
1698
+ #endif
1699
+ }
1700
+
1701
+ FMT_CONSTEXPR inline auto operator*(fp x, fp y) -> fp {
1702
+ return {multiply(x.f, y.f), x.e + y.e + 64};
1703
+ }
1704
+
1705
+ template <typename T, bool doublish = num_bits<T>() == num_bits<double>()>
1706
+ using convert_float_result =
1707
+ conditional_t<std::is_same<T, float>::value || doublish, double, T>;
1708
+
1709
+ template <typename T>
1710
+ constexpr auto convert_float(T value) -> convert_float_result<T> {
1711
+ return static_cast<convert_float_result<T>>(value);
1712
+ }
1713
+
1714
+ template <typename OutputIt, typename Char>
1715
+ FMT_NOINLINE FMT_CONSTEXPR auto fill(OutputIt it, size_t n,
1716
+ const fill_t<Char>& fill) -> OutputIt {
1717
+ auto fill_size = fill.size();
1718
+ if (fill_size == 1) return detail::fill_n(it, n, fill[0]);
1719
+ auto data = fill.data();
1720
+ for (size_t i = 0; i < n; ++i)
1721
+ it = copy_str<Char>(data, data + fill_size, it);
1722
+ return it;
1723
+ }
1724
+
1725
+ // Writes the output of f, padded according to format specifications in specs.
1726
+ // size: output size in code units.
1727
+ // width: output display width in (terminal) column positions.
1728
+ template <align::type align = align::left, typename OutputIt, typename Char,
1729
+ typename F>
1730
+ FMT_CONSTEXPR auto write_padded(OutputIt out, const format_specs<Char>& specs,
1731
+ size_t size, size_t width, F&& f) -> OutputIt {
1732
+ static_assert(align == align::left || align == align::right, "");
1733
+ unsigned spec_width = to_unsigned(specs.width);
1734
+ size_t padding = spec_width > width ? spec_width - width : 0;
1735
+ // Shifts are encoded as string literals because static constexpr is not
1736
+ // supported in constexpr functions.
1737
+ auto* shifts = align == align::left ? "\x1f\x1f\x00\x01" : "\x00\x1f\x00\x01";
1738
+ size_t left_padding = padding >> shifts[specs.align];
1739
+ size_t right_padding = padding - left_padding;
1740
+ auto it = reserve(out, size + padding * specs.fill.size());
1741
+ if (left_padding != 0) it = fill(it, left_padding, specs.fill);
1742
+ it = f(it);
1743
+ if (right_padding != 0) it = fill(it, right_padding, specs.fill);
1744
+ return base_iterator(out, it);
1745
+ }
1746
+
1747
+ template <align::type align = align::left, typename OutputIt, typename Char,
1748
+ typename F>
1749
+ constexpr auto write_padded(OutputIt out, const format_specs<Char>& specs,
1750
+ size_t size, F&& f) -> OutputIt {
1751
+ return write_padded<align>(out, specs, size, size, f);
1752
+ }
1753
+
1754
+ template <align::type align = align::left, typename Char, typename OutputIt>
1755
+ FMT_CONSTEXPR auto write_bytes(OutputIt out, string_view bytes,
1756
+ const format_specs<Char>& specs) -> OutputIt {
1757
+ return write_padded<align>(
1758
+ out, specs, bytes.size(), [bytes](reserve_iterator<OutputIt> it) {
1759
+ const char* data = bytes.data();
1760
+ return copy_str<Char>(data, data + bytes.size(), it);
1761
+ });
1762
+ }
1763
+
1764
+ template <typename Char, typename OutputIt, typename UIntPtr>
1765
+ auto write_ptr(OutputIt out, UIntPtr value, const format_specs<Char>* specs)
1766
+ -> OutputIt {
1767
+ int num_digits = count_digits<4>(value);
1768
+ auto size = to_unsigned(num_digits) + size_t(2);
1769
+ auto write = [=](reserve_iterator<OutputIt> it) {
1770
+ *it++ = static_cast<Char>('0');
1771
+ *it++ = static_cast<Char>('x');
1772
+ return format_uint<4, Char>(it, value, num_digits);
1773
+ };
1774
+ return specs ? write_padded<align::right>(out, *specs, size, write)
1775
+ : base_iterator(out, write(reserve(out, size)));
1776
+ }
1777
+
1778
+ // Returns true iff the code point cp is printable.
1779
+ FMT_API auto is_printable(uint32_t cp) -> bool;
1780
+
1781
+ inline auto needs_escape(uint32_t cp) -> bool {
1782
+ return cp < 0x20 || cp == 0x7f || cp == '"' || cp == '\\' ||
1783
+ !is_printable(cp);
1784
+ }
1785
+
1786
+ template <typename Char> struct find_escape_result {
1787
+ const Char* begin;
1788
+ const Char* end;
1789
+ uint32_t cp;
1790
+ };
1791
+
1792
+ template <typename Char>
1793
+ using make_unsigned_char =
1794
+ typename conditional_t<std::is_integral<Char>::value,
1795
+ std::make_unsigned<Char>,
1796
+ type_identity<uint32_t>>::type;
1797
+
1798
+ template <typename Char>
1799
+ auto find_escape(const Char* begin, const Char* end)
1800
+ -> find_escape_result<Char> {
1801
+ for (; begin != end; ++begin) {
1802
+ uint32_t cp = static_cast<make_unsigned_char<Char>>(*begin);
1803
+ if (const_check(sizeof(Char) == 1) && cp >= 0x80) continue;
1804
+ if (needs_escape(cp)) return {begin, begin + 1, cp};
1805
+ }
1806
+ return {begin, nullptr, 0};
1807
+ }
1808
+
1809
+ inline auto find_escape(const char* begin, const char* end)
1810
+ -> find_escape_result<char> {
1811
+ if (!is_utf8()) return find_escape<char>(begin, end);
1812
+ auto result = find_escape_result<char>{end, nullptr, 0};
1813
+ for_each_codepoint(string_view(begin, to_unsigned(end - begin)),
1814
+ [&](uint32_t cp, string_view sv) {
1815
+ if (needs_escape(cp)) {
1816
+ result = {sv.begin(), sv.end(), cp};
1817
+ return false;
1818
+ }
1819
+ return true;
1820
+ });
1821
+ return result;
1822
+ }
1823
+
1824
+ #define FMT_STRING_IMPL(s, base, explicit) \
1825
+ [] { \
1826
+ /* Use the hidden visibility as a workaround for a GCC bug (#1973). */ \
1827
+ /* Use a macro-like name to avoid shadowing warnings. */ \
1828
+ struct FMT_VISIBILITY("hidden") FMT_COMPILE_STRING : base { \
1829
+ using char_type FMT_MAYBE_UNUSED = fmt::remove_cvref_t<decltype(s[0])>; \
1830
+ FMT_MAYBE_UNUSED FMT_CONSTEXPR explicit \
1831
+ operator fmt::basic_string_view<char_type>() const { \
1832
+ return fmt::detail_exported::compile_string_to_view<char_type>(s); \
1833
+ } \
1834
+ }; \
1835
+ return FMT_COMPILE_STRING(); \
1836
+ }()
1837
+
1838
+ /**
1839
+ \rst
1840
+ Constructs a compile-time format string from a string literal *s*.
1841
+
1842
+ **Example**::
1843
+
1844
+ // A compile-time error because 'd' is an invalid specifier for strings.
1845
+ std::string s = fmt::format(FMT_STRING("{:d}"), "foo");
1846
+ \endrst
1847
+ */
1848
+ #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string, )
1849
+
1850
+ template <size_t width, typename Char, typename OutputIt>
1851
+ auto write_codepoint(OutputIt out, char prefix, uint32_t cp) -> OutputIt {
1852
+ *out++ = static_cast<Char>('\\');
1853
+ *out++ = static_cast<Char>(prefix);
1854
+ Char buf[width];
1855
+ fill_n(buf, width, static_cast<Char>('0'));
1856
+ format_uint<4>(buf, cp, width);
1857
+ return copy_str<Char>(buf, buf + width, out);
1858
+ }
1859
+
1860
+ template <typename OutputIt, typename Char>
1861
+ auto write_escaped_cp(OutputIt out, const find_escape_result<Char>& escape)
1862
+ -> OutputIt {
1863
+ auto c = static_cast<Char>(escape.cp);
1864
+ switch (escape.cp) {
1865
+ case '\n':
1866
+ *out++ = static_cast<Char>('\\');
1867
+ c = static_cast<Char>('n');
1868
+ break;
1869
+ case '\r':
1870
+ *out++ = static_cast<Char>('\\');
1871
+ c = static_cast<Char>('r');
1872
+ break;
1873
+ case '\t':
1874
+ *out++ = static_cast<Char>('\\');
1875
+ c = static_cast<Char>('t');
1876
+ break;
1877
+ case '"':
1878
+ FMT_FALLTHROUGH;
1879
+ case '\'':
1880
+ FMT_FALLTHROUGH;
1881
+ case '\\':
1882
+ *out++ = static_cast<Char>('\\');
1883
+ break;
1884
+ default:
1885
+ if (escape.cp < 0x100) {
1886
+ return write_codepoint<2, Char>(out, 'x', escape.cp);
1887
+ }
1888
+ if (escape.cp < 0x10000) {
1889
+ return write_codepoint<4, Char>(out, 'u', escape.cp);
1890
+ }
1891
+ if (escape.cp < 0x110000) {
1892
+ return write_codepoint<8, Char>(out, 'U', escape.cp);
1893
+ }
1894
+ for (Char escape_char : basic_string_view<Char>(
1895
+ escape.begin, to_unsigned(escape.end - escape.begin))) {
1896
+ out = write_codepoint<2, Char>(out, 'x',
1897
+ static_cast<uint32_t>(escape_char) & 0xFF);
1898
+ }
1899
+ return out;
1900
+ }
1901
+ *out++ = c;
1902
+ return out;
1903
+ }
1904
+
1905
+ template <typename Char, typename OutputIt>
1906
+ auto write_escaped_string(OutputIt out, basic_string_view<Char> str)
1907
+ -> OutputIt {
1908
+ *out++ = static_cast<Char>('"');
1909
+ auto begin = str.begin(), end = str.end();
1910
+ do {
1911
+ auto escape = find_escape(begin, end);
1912
+ out = copy_str<Char>(begin, escape.begin, out);
1913
+ begin = escape.end;
1914
+ if (!begin) break;
1915
+ out = write_escaped_cp<OutputIt, Char>(out, escape);
1916
+ } while (begin != end);
1917
+ *out++ = static_cast<Char>('"');
1918
+ return out;
1919
+ }
1920
+
1921
+ template <typename Char, typename OutputIt>
1922
+ auto write_escaped_char(OutputIt out, Char v) -> OutputIt {
1923
+ Char v_array[1] = {v};
1924
+ *out++ = static_cast<Char>('\'');
1925
+ if ((needs_escape(static_cast<uint32_t>(v)) && v != static_cast<Char>('"')) ||
1926
+ v == static_cast<Char>('\'')) {
1927
+ out = write_escaped_cp(out,
1928
+ find_escape_result<Char>{v_array, v_array + 1,
1929
+ static_cast<uint32_t>(v)});
1930
+ } else {
1931
+ *out++ = v;
1932
+ }
1933
+ *out++ = static_cast<Char>('\'');
1934
+ return out;
1935
+ }
1936
+
1937
+ template <typename Char, typename OutputIt>
1938
+ FMT_CONSTEXPR auto write_char(OutputIt out, Char value,
1939
+ const format_specs<Char>& specs) -> OutputIt {
1940
+ bool is_debug = specs.type == presentation_type::debug;
1941
+ return write_padded(out, specs, 1, [=](reserve_iterator<OutputIt> it) {
1942
+ if (is_debug) return write_escaped_char(it, value);
1943
+ *it++ = value;
1944
+ return it;
1945
+ });
1946
+ }
1947
+ template <typename Char, typename OutputIt>
1948
+ FMT_CONSTEXPR auto write(OutputIt out, Char value,
1949
+ const format_specs<Char>& specs, locale_ref loc = {})
1950
+ -> OutputIt {
1951
+ // char is formatted as unsigned char for consistency across platforms.
1952
+ using unsigned_type =
1953
+ conditional_t<std::is_same<Char, char>::value, unsigned char, unsigned>;
1954
+ return check_char_specs(specs)
1955
+ ? write_char(out, value, specs)
1956
+ : write(out, static_cast<unsigned_type>(value), specs, loc);
1957
+ }
1958
+
1959
+ // Data for write_int that doesn't depend on output iterator type. It is used to
1960
+ // avoid template code bloat.
1961
+ template <typename Char> struct write_int_data {
1962
+ size_t size;
1963
+ size_t padding;
1964
+
1965
+ FMT_CONSTEXPR write_int_data(int num_digits, unsigned prefix,
1966
+ const format_specs<Char>& specs)
1967
+ : size((prefix >> 24) + to_unsigned(num_digits)), padding(0) {
1968
+ if (specs.align == align::numeric) {
1969
+ auto width = to_unsigned(specs.width);
1970
+ if (width > size) {
1971
+ padding = width - size;
1972
+ size = width;
1973
+ }
1974
+ } else if (specs.precision > num_digits) {
1975
+ size = (prefix >> 24) + to_unsigned(specs.precision);
1976
+ padding = to_unsigned(specs.precision - num_digits);
1977
+ }
1978
+ }
1979
+ };
1980
+
1981
+ // Writes an integer in the format
1982
+ // <left-padding><prefix><numeric-padding><digits><right-padding>
1983
+ // where <digits> are written by write_digits(it).
1984
+ // prefix contains chars in three lower bytes and the size in the fourth byte.
1985
+ template <typename OutputIt, typename Char, typename W>
1986
+ FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, int num_digits,
1987
+ unsigned prefix,
1988
+ const format_specs<Char>& specs,
1989
+ W write_digits) -> OutputIt {
1990
+ // Slightly faster check for specs.width == 0 && specs.precision == -1.
1991
+ if ((specs.width | (specs.precision + 1)) == 0) {
1992
+ auto it = reserve(out, to_unsigned(num_digits) + (prefix >> 24));
1993
+ if (prefix != 0) {
1994
+ for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8)
1995
+ *it++ = static_cast<Char>(p & 0xff);
1996
+ }
1997
+ return base_iterator(out, write_digits(it));
1998
+ }
1999
+ auto data = write_int_data<Char>(num_digits, prefix, specs);
2000
+ return write_padded<align::right>(
2001
+ out, specs, data.size, [=](reserve_iterator<OutputIt> it) {
2002
+ for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8)
2003
+ *it++ = static_cast<Char>(p & 0xff);
2004
+ it = detail::fill_n(it, data.padding, static_cast<Char>('0'));
2005
+ return write_digits(it);
2006
+ });
2007
+ }
2008
+
2009
+ template <typename Char> class digit_grouping {
2010
+ private:
2011
+ std::string grouping_;
2012
+ std::basic_string<Char> thousands_sep_;
2013
+
2014
+ struct next_state {
2015
+ std::string::const_iterator group;
2016
+ int pos;
2017
+ };
2018
+ auto initial_state() const -> next_state { return {grouping_.begin(), 0}; }
2019
+
2020
+ // Returns the next digit group separator position.
2021
+ auto next(next_state& state) const -> int {
2022
+ if (thousands_sep_.empty()) return max_value<int>();
2023
+ if (state.group == grouping_.end()) return state.pos += grouping_.back();
2024
+ if (*state.group <= 0 || *state.group == max_value<char>())
2025
+ return max_value<int>();
2026
+ state.pos += *state.group++;
2027
+ return state.pos;
2028
+ }
2029
+
2030
+ public:
2031
+ explicit digit_grouping(locale_ref loc, bool localized = true) {
2032
+ if (!localized) return;
2033
+ auto sep = thousands_sep<Char>(loc);
2034
+ grouping_ = sep.grouping;
2035
+ if (sep.thousands_sep) thousands_sep_.assign(1, sep.thousands_sep);
2036
+ }
2037
+ digit_grouping(std::string grouping, std::basic_string<Char> sep)
2038
+ : grouping_(std::move(grouping)), thousands_sep_(std::move(sep)) {}
2039
+
2040
+ auto has_separator() const -> bool { return !thousands_sep_.empty(); }
2041
+
2042
+ auto count_separators(int num_digits) const -> int {
2043
+ int count = 0;
2044
+ auto state = initial_state();
2045
+ while (num_digits > next(state)) ++count;
2046
+ return count;
2047
+ }
2048
+
2049
+ // Applies grouping to digits and write the output to out.
2050
+ template <typename Out, typename C>
2051
+ auto apply(Out out, basic_string_view<C> digits) const -> Out {
2052
+ auto num_digits = static_cast<int>(digits.size());
2053
+ auto separators = basic_memory_buffer<int>();
2054
+ separators.push_back(0);
2055
+ auto state = initial_state();
2056
+ while (int i = next(state)) {
2057
+ if (i >= num_digits) break;
2058
+ separators.push_back(i);
2059
+ }
2060
+ for (int i = 0, sep_index = static_cast<int>(separators.size() - 1);
2061
+ i < num_digits; ++i) {
2062
+ if (num_digits - i == separators[sep_index]) {
2063
+ out =
2064
+ copy_str<Char>(thousands_sep_.data(),
2065
+ thousands_sep_.data() + thousands_sep_.size(), out);
2066
+ --sep_index;
2067
+ }
2068
+ *out++ = static_cast<Char>(digits[to_unsigned(i)]);
2069
+ }
2070
+ return out;
2071
+ }
2072
+ };
2073
+
2074
+ FMT_CONSTEXPR inline void prefix_append(unsigned& prefix, unsigned value) {
2075
+ prefix |= prefix != 0 ? value << 8 : value;
2076
+ prefix += (1u + (value > 0xff ? 1 : 0)) << 24;
2077
+ }
2078
+
2079
+ // Writes a decimal integer with digit grouping.
2080
+ template <typename OutputIt, typename UInt, typename Char>
2081
+ auto write_int(OutputIt out, UInt value, unsigned prefix,
2082
+ const format_specs<Char>& specs,
2083
+ const digit_grouping<Char>& grouping) -> OutputIt {
2084
+ static_assert(std::is_same<uint64_or_128_t<UInt>, UInt>::value, "");
2085
+ int num_digits = 0;
2086
+ auto buffer = memory_buffer();
2087
+ switch (specs.type) {
2088
+ case presentation_type::none:
2089
+ case presentation_type::dec: {
2090
+ num_digits = count_digits(value);
2091
+ format_decimal<char>(appender(buffer), value, num_digits);
2092
+ break;
2093
+ }
2094
+ case presentation_type::hex_lower:
2095
+ case presentation_type::hex_upper: {
2096
+ bool upper = specs.type == presentation_type::hex_upper;
2097
+ if (specs.alt)
2098
+ prefix_append(prefix, unsigned(upper ? 'X' : 'x') << 8 | '0');
2099
+ num_digits = count_digits<4>(value);
2100
+ format_uint<4, char>(appender(buffer), value, num_digits, upper);
2101
+ break;
2102
+ }
2103
+ case presentation_type::bin_lower:
2104
+ case presentation_type::bin_upper: {
2105
+ bool upper = specs.type == presentation_type::bin_upper;
2106
+ if (specs.alt)
2107
+ prefix_append(prefix, unsigned(upper ? 'B' : 'b') << 8 | '0');
2108
+ num_digits = count_digits<1>(value);
2109
+ format_uint<1, char>(appender(buffer), value, num_digits);
2110
+ break;
2111
+ }
2112
+ case presentation_type::oct: {
2113
+ num_digits = count_digits<3>(value);
2114
+ // Octal prefix '0' is counted as a digit, so only add it if precision
2115
+ // is not greater than the number of digits.
2116
+ if (specs.alt && specs.precision <= num_digits && value != 0)
2117
+ prefix_append(prefix, '0');
2118
+ format_uint<3, char>(appender(buffer), value, num_digits);
2119
+ break;
2120
+ }
2121
+ case presentation_type::chr:
2122
+ return write_char(out, static_cast<Char>(value), specs);
2123
+ default:
2124
+ throw_format_error("invalid format specifier");
2125
+ }
2126
+
2127
+ unsigned size = (prefix != 0 ? prefix >> 24 : 0) + to_unsigned(num_digits) +
2128
+ to_unsigned(grouping.count_separators(num_digits));
2129
+ return write_padded<align::right>(
2130
+ out, specs, size, size, [&](reserve_iterator<OutputIt> it) {
2131
+ for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8)
2132
+ *it++ = static_cast<Char>(p & 0xff);
2133
+ return grouping.apply(it, string_view(buffer.data(), buffer.size()));
2134
+ });
2135
+ }
2136
+
2137
+ // Writes a localized value.
2138
+ FMT_API auto write_loc(appender out, loc_value value,
2139
+ const format_specs<>& specs, locale_ref loc) -> bool;
2140
+ template <typename OutputIt, typename Char>
2141
+ inline auto write_loc(OutputIt, loc_value, const format_specs<Char>&,
2142
+ locale_ref) -> bool {
2143
+ return false;
2144
+ }
2145
+
2146
+ template <typename UInt> struct write_int_arg {
2147
+ UInt abs_value;
2148
+ unsigned prefix;
2149
+ };
2150
+
2151
+ template <typename T>
2152
+ FMT_CONSTEXPR auto make_write_int_arg(T value, sign_t sign)
2153
+ -> write_int_arg<uint32_or_64_or_128_t<T>> {
2154
+ auto prefix = 0u;
2155
+ auto abs_value = static_cast<uint32_or_64_or_128_t<T>>(value);
2156
+ if (is_negative(value)) {
2157
+ prefix = 0x01000000 | '-';
2158
+ abs_value = 0 - abs_value;
2159
+ } else {
2160
+ constexpr const unsigned prefixes[4] = {0, 0, 0x1000000u | '+',
2161
+ 0x1000000u | ' '};
2162
+ prefix = prefixes[sign];
2163
+ }
2164
+ return {abs_value, prefix};
2165
+ }
2166
+
2167
+ template <typename Char = char> struct loc_writer {
2168
+ buffer_appender<Char> out;
2169
+ const format_specs<Char>& specs;
2170
+ std::basic_string<Char> sep;
2171
+ std::string grouping;
2172
+ std::basic_string<Char> decimal_point;
2173
+
2174
+ template <typename T, FMT_ENABLE_IF(is_integer<T>::value)>
2175
+ auto operator()(T value) -> bool {
2176
+ auto arg = make_write_int_arg(value, specs.sign);
2177
+ write_int(out, static_cast<uint64_or_128_t<T>>(arg.abs_value), arg.prefix,
2178
+ specs, digit_grouping<Char>(grouping, sep));
2179
+ return true;
2180
+ }
2181
+
2182
+ template <typename T, FMT_ENABLE_IF(!is_integer<T>::value)>
2183
+ auto operator()(T) -> bool {
2184
+ return false;
2185
+ }
2186
+ };
2187
+
2188
+ template <typename Char, typename OutputIt, typename T>
2189
+ FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, write_int_arg<T> arg,
2190
+ const format_specs<Char>& specs,
2191
+ locale_ref) -> OutputIt {
2192
+ static_assert(std::is_same<T, uint32_or_64_or_128_t<T>>::value, "");
2193
+ auto abs_value = arg.abs_value;
2194
+ auto prefix = arg.prefix;
2195
+ switch (specs.type) {
2196
+ case presentation_type::none:
2197
+ case presentation_type::dec: {
2198
+ auto num_digits = count_digits(abs_value);
2199
+ return write_int(
2200
+ out, num_digits, prefix, specs, [=](reserve_iterator<OutputIt> it) {
2201
+ return format_decimal<Char>(it, abs_value, num_digits).end;
2202
+ });
2203
+ }
2204
+ case presentation_type::hex_lower:
2205
+ case presentation_type::hex_upper: {
2206
+ bool upper = specs.type == presentation_type::hex_upper;
2207
+ if (specs.alt)
2208
+ prefix_append(prefix, unsigned(upper ? 'X' : 'x') << 8 | '0');
2209
+ int num_digits = count_digits<4>(abs_value);
2210
+ return write_int(
2211
+ out, num_digits, prefix, specs, [=](reserve_iterator<OutputIt> it) {
2212
+ return format_uint<4, Char>(it, abs_value, num_digits, upper);
2213
+ });
2214
+ }
2215
+ case presentation_type::bin_lower:
2216
+ case presentation_type::bin_upper: {
2217
+ bool upper = specs.type == presentation_type::bin_upper;
2218
+ if (specs.alt)
2219
+ prefix_append(prefix, unsigned(upper ? 'B' : 'b') << 8 | '0');
2220
+ int num_digits = count_digits<1>(abs_value);
2221
+ return write_int(out, num_digits, prefix, specs,
2222
+ [=](reserve_iterator<OutputIt> it) {
2223
+ return format_uint<1, Char>(it, abs_value, num_digits);
2224
+ });
2225
+ }
2226
+ case presentation_type::oct: {
2227
+ int num_digits = count_digits<3>(abs_value);
2228
+ // Octal prefix '0' is counted as a digit, so only add it if precision
2229
+ // is not greater than the number of digits.
2230
+ if (specs.alt && specs.precision <= num_digits && abs_value != 0)
2231
+ prefix_append(prefix, '0');
2232
+ return write_int(out, num_digits, prefix, specs,
2233
+ [=](reserve_iterator<OutputIt> it) {
2234
+ return format_uint<3, Char>(it, abs_value, num_digits);
2235
+ });
2236
+ }
2237
+ case presentation_type::chr:
2238
+ return write_char(out, static_cast<Char>(abs_value), specs);
2239
+ default:
2240
+ throw_format_error("invalid format specifier");
2241
+ }
2242
+ return out;
2243
+ }
2244
+ template <typename Char, typename OutputIt, typename T>
2245
+ FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline(
2246
+ OutputIt out, write_int_arg<T> arg, const format_specs<Char>& specs,
2247
+ locale_ref loc) -> OutputIt {
2248
+ return write_int(out, arg, specs, loc);
2249
+ }
2250
+ template <typename Char, typename OutputIt, typename T,
2251
+ FMT_ENABLE_IF(is_integral<T>::value &&
2252
+ !std::is_same<T, bool>::value &&
2253
+ std::is_same<OutputIt, buffer_appender<Char>>::value)>
2254
+ FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value,
2255
+ const format_specs<Char>& specs,
2256
+ locale_ref loc) -> OutputIt {
2257
+ if (specs.localized && write_loc(out, value, specs, loc)) return out;
2258
+ return write_int_noinline(out, make_write_int_arg(value, specs.sign), specs,
2259
+ loc);
2260
+ }
2261
+ // An inlined version of write used in format string compilation.
2262
+ template <typename Char, typename OutputIt, typename T,
2263
+ FMT_ENABLE_IF(is_integral<T>::value &&
2264
+ !std::is_same<T, bool>::value &&
2265
+ !std::is_same<OutputIt, buffer_appender<Char>>::value)>
2266
+ FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value,
2267
+ const format_specs<Char>& specs,
2268
+ locale_ref loc) -> OutputIt {
2269
+ if (specs.localized && write_loc(out, value, specs, loc)) return out;
2270
+ return write_int(out, make_write_int_arg(value, specs.sign), specs, loc);
2271
+ }
2272
+
2273
+ // An output iterator that counts the number of objects written to it and
2274
+ // discards them.
2275
+ class counting_iterator {
2276
+ private:
2277
+ size_t count_;
2278
+
2279
+ public:
2280
+ using iterator_category = std::output_iterator_tag;
2281
+ using difference_type = std::ptrdiff_t;
2282
+ using pointer = void;
2283
+ using reference = void;
2284
+ FMT_UNCHECKED_ITERATOR(counting_iterator);
2285
+
2286
+ struct value_type {
2287
+ template <typename T> FMT_CONSTEXPR void operator=(const T&) {}
2288
+ };
2289
+
2290
+ FMT_CONSTEXPR counting_iterator() : count_(0) {}
2291
+
2292
+ FMT_CONSTEXPR auto count() const -> size_t { return count_; }
2293
+
2294
+ FMT_CONSTEXPR auto operator++() -> counting_iterator& {
2295
+ ++count_;
2296
+ return *this;
2297
+ }
2298
+ FMT_CONSTEXPR auto operator++(int) -> counting_iterator {
2299
+ auto it = *this;
2300
+ ++*this;
2301
+ return it;
2302
+ }
2303
+
2304
+ FMT_CONSTEXPR friend auto operator+(counting_iterator it, difference_type n)
2305
+ -> counting_iterator {
2306
+ it.count_ += static_cast<size_t>(n);
2307
+ return it;
2308
+ }
2309
+
2310
+ FMT_CONSTEXPR auto operator*() const -> value_type { return {}; }
2311
+ };
2312
+
2313
+ template <typename Char, typename OutputIt>
2314
+ FMT_CONSTEXPR auto write(OutputIt out, basic_string_view<Char> s,
2315
+ const format_specs<Char>& specs) -> OutputIt {
2316
+ auto data = s.data();
2317
+ auto size = s.size();
2318
+ if (specs.precision >= 0 && to_unsigned(specs.precision) < size)
2319
+ size = code_point_index(s, to_unsigned(specs.precision));
2320
+ bool is_debug = specs.type == presentation_type::debug;
2321
+ size_t width = 0;
2322
+ if (specs.width != 0) {
2323
+ if (is_debug)
2324
+ width = write_escaped_string(counting_iterator{}, s).count();
2325
+ else
2326
+ width = compute_width(basic_string_view<Char>(data, size));
2327
+ }
2328
+ return write_padded(out, specs, size, width,
2329
+ [=](reserve_iterator<OutputIt> it) {
2330
+ if (is_debug) return write_escaped_string(it, s);
2331
+ return copy_str<Char>(data, data + size, it);
2332
+ });
2333
+ }
2334
+ template <typename Char, typename OutputIt>
2335
+ FMT_CONSTEXPR auto write(OutputIt out,
2336
+ basic_string_view<type_identity_t<Char>> s,
2337
+ const format_specs<Char>& specs, locale_ref)
2338
+ -> OutputIt {
2339
+ return write(out, s, specs);
2340
+ }
2341
+ template <typename Char, typename OutputIt>
2342
+ FMT_CONSTEXPR auto write(OutputIt out, const Char* s,
2343
+ const format_specs<Char>& specs, locale_ref)
2344
+ -> OutputIt {
2345
+ if (specs.type == presentation_type::pointer)
2346
+ return write_ptr<Char>(out, bit_cast<uintptr_t>(s), &specs);
2347
+ if (!s) throw_format_error("string pointer is null");
2348
+ return write(out, basic_string_view<Char>(s), specs, {});
2349
+ }
2350
+
2351
+ template <typename Char, typename OutputIt, typename T,
2352
+ FMT_ENABLE_IF(is_integral<T>::value &&
2353
+ !std::is_same<T, bool>::value &&
2354
+ !std::is_same<T, Char>::value)>
2355
+ FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt {
2356
+ auto abs_value = static_cast<uint32_or_64_or_128_t<T>>(value);
2357
+ bool negative = is_negative(value);
2358
+ // Don't do -abs_value since it trips unsigned-integer-overflow sanitizer.
2359
+ if (negative) abs_value = ~abs_value + 1;
2360
+ int num_digits = count_digits(abs_value);
2361
+ auto size = (negative ? 1 : 0) + static_cast<size_t>(num_digits);
2362
+ auto it = reserve(out, size);
2363
+ if (auto ptr = to_pointer<Char>(it, size)) {
2364
+ if (negative) *ptr++ = static_cast<Char>('-');
2365
+ format_decimal<Char>(ptr, abs_value, num_digits);
2366
+ return out;
2367
+ }
2368
+ if (negative) *it++ = static_cast<Char>('-');
2369
+ it = format_decimal<Char>(it, abs_value, num_digits).end;
2370
+ return base_iterator(out, it);
2371
+ }
2372
+
2373
+ // DEPRECATED!
2374
+ template <typename Char>
2375
+ FMT_CONSTEXPR auto parse_align(const Char* begin, const Char* end,
2376
+ format_specs<Char>& specs) -> const Char* {
2377
+ FMT_ASSERT(begin != end, "");
2378
+ auto align = align::none;
2379
+ auto p = begin + code_point_length(begin);
2380
+ if (end - p <= 0) p = begin;
2381
+ for (;;) {
2382
+ switch (to_ascii(*p)) {
2383
+ case '<':
2384
+ align = align::left;
2385
+ break;
2386
+ case '>':
2387
+ align = align::right;
2388
+ break;
2389
+ case '^':
2390
+ align = align::center;
2391
+ break;
2392
+ }
2393
+ if (align != align::none) {
2394
+ if (p != begin) {
2395
+ auto c = *begin;
2396
+ if (c == '}') return begin;
2397
+ if (c == '{') {
2398
+ throw_format_error("invalid fill character '{'");
2399
+ return begin;
2400
+ }
2401
+ specs.fill = {begin, to_unsigned(p - begin)};
2402
+ begin = p + 1;
2403
+ } else {
2404
+ ++begin;
2405
+ }
2406
+ break;
2407
+ } else if (p == begin) {
2408
+ break;
2409
+ }
2410
+ p = begin;
2411
+ }
2412
+ specs.align = align;
2413
+ return begin;
2414
+ }
2415
+
2416
+ // A floating-point presentation format.
2417
+ enum class float_format : unsigned char {
2418
+ general, // General: exponent notation or fixed point based on magnitude.
2419
+ exp, // Exponent notation with the default precision of 6, e.g. 1.2e-3.
2420
+ fixed, // Fixed point with the default precision of 6, e.g. 0.0012.
2421
+ hex
2422
+ };
2423
+
2424
+ struct float_specs {
2425
+ int precision;
2426
+ float_format format : 8;
2427
+ sign_t sign : 8;
2428
+ bool upper : 1;
2429
+ bool locale : 1;
2430
+ bool binary32 : 1;
2431
+ bool showpoint : 1;
2432
+ };
2433
+
2434
+ template <typename Char>
2435
+ FMT_CONSTEXPR auto parse_float_type_spec(const format_specs<Char>& specs)
2436
+ -> float_specs {
2437
+ auto result = float_specs();
2438
+ result.showpoint = specs.alt;
2439
+ result.locale = specs.localized;
2440
+ switch (specs.type) {
2441
+ case presentation_type::none:
2442
+ result.format = float_format::general;
2443
+ break;
2444
+ case presentation_type::general_upper:
2445
+ result.upper = true;
2446
+ FMT_FALLTHROUGH;
2447
+ case presentation_type::general_lower:
2448
+ result.format = float_format::general;
2449
+ break;
2450
+ case presentation_type::exp_upper:
2451
+ result.upper = true;
2452
+ FMT_FALLTHROUGH;
2453
+ case presentation_type::exp_lower:
2454
+ result.format = float_format::exp;
2455
+ result.showpoint |= specs.precision != 0;
2456
+ break;
2457
+ case presentation_type::fixed_upper:
2458
+ result.upper = true;
2459
+ FMT_FALLTHROUGH;
2460
+ case presentation_type::fixed_lower:
2461
+ result.format = float_format::fixed;
2462
+ result.showpoint |= specs.precision != 0;
2463
+ break;
2464
+ case presentation_type::hexfloat_upper:
2465
+ result.upper = true;
2466
+ FMT_FALLTHROUGH;
2467
+ case presentation_type::hexfloat_lower:
2468
+ result.format = float_format::hex;
2469
+ break;
2470
+ default:
2471
+ throw_format_error("invalid format specifier");
2472
+ break;
2473
+ }
2474
+ return result;
2475
+ }
2476
+
2477
+ template <typename Char, typename OutputIt>
2478
+ FMT_CONSTEXPR20 auto write_nonfinite(OutputIt out, bool isnan,
2479
+ format_specs<Char> specs,
2480
+ const float_specs& fspecs) -> OutputIt {
2481
+ auto str =
2482
+ isnan ? (fspecs.upper ? "NAN" : "nan") : (fspecs.upper ? "INF" : "inf");
2483
+ constexpr size_t str_size = 3;
2484
+ auto sign = fspecs.sign;
2485
+ auto size = str_size + (sign ? 1 : 0);
2486
+ // Replace '0'-padding with space for non-finite values.
2487
+ const bool is_zero_fill =
2488
+ specs.fill.size() == 1 && *specs.fill.data() == static_cast<Char>('0');
2489
+ if (is_zero_fill) specs.fill[0] = static_cast<Char>(' ');
2490
+ return write_padded(out, specs, size, [=](reserve_iterator<OutputIt> it) {
2491
+ if (sign) *it++ = detail::sign<Char>(sign);
2492
+ return copy_str<Char>(str, str + str_size, it);
2493
+ });
2494
+ }
2495
+
2496
+ // A decimal floating-point number significand * pow(10, exp).
2497
+ struct big_decimal_fp {
2498
+ const char* significand;
2499
+ int significand_size;
2500
+ int exponent;
2501
+ };
2502
+
2503
+ constexpr auto get_significand_size(const big_decimal_fp& f) -> int {
2504
+ return f.significand_size;
2505
+ }
2506
+ template <typename T>
2507
+ inline auto get_significand_size(const dragonbox::decimal_fp<T>& f) -> int {
2508
+ return count_digits(f.significand);
2509
+ }
2510
+
2511
+ template <typename Char, typename OutputIt>
2512
+ constexpr auto write_significand(OutputIt out, const char* significand,
2513
+ int significand_size) -> OutputIt {
2514
+ return copy_str<Char>(significand, significand + significand_size, out);
2515
+ }
2516
+ template <typename Char, typename OutputIt, typename UInt>
2517
+ inline auto write_significand(OutputIt out, UInt significand,
2518
+ int significand_size) -> OutputIt {
2519
+ return format_decimal<Char>(out, significand, significand_size).end;
2520
+ }
2521
+ template <typename Char, typename OutputIt, typename T, typename Grouping>
2522
+ FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand,
2523
+ int significand_size, int exponent,
2524
+ const Grouping& grouping) -> OutputIt {
2525
+ if (!grouping.has_separator()) {
2526
+ out = write_significand<Char>(out, significand, significand_size);
2527
+ return detail::fill_n(out, exponent, static_cast<Char>('0'));
2528
+ }
2529
+ auto buffer = memory_buffer();
2530
+ write_significand<char>(appender(buffer), significand, significand_size);
2531
+ detail::fill_n(appender(buffer), exponent, '0');
2532
+ return grouping.apply(out, string_view(buffer.data(), buffer.size()));
2533
+ }
2534
+
2535
+ template <typename Char, typename UInt,
2536
+ FMT_ENABLE_IF(std::is_integral<UInt>::value)>
2537
+ inline auto write_significand(Char* out, UInt significand, int significand_size,
2538
+ int integral_size, Char decimal_point) -> Char* {
2539
+ if (!decimal_point)
2540
+ return format_decimal(out, significand, significand_size).end;
2541
+ out += significand_size + 1;
2542
+ Char* end = out;
2543
+ int floating_size = significand_size - integral_size;
2544
+ for (int i = floating_size / 2; i > 0; --i) {
2545
+ out -= 2;
2546
+ copy2(out, digits2(static_cast<std::size_t>(significand % 100)));
2547
+ significand /= 100;
2548
+ }
2549
+ if (floating_size % 2 != 0) {
2550
+ *--out = static_cast<Char>('0' + significand % 10);
2551
+ significand /= 10;
2552
+ }
2553
+ *--out = decimal_point;
2554
+ format_decimal(out - integral_size, significand, integral_size);
2555
+ return end;
2556
+ }
2557
+
2558
+ template <typename OutputIt, typename UInt, typename Char,
2559
+ FMT_ENABLE_IF(!std::is_pointer<remove_cvref_t<OutputIt>>::value)>
2560
+ inline auto write_significand(OutputIt out, UInt significand,
2561
+ int significand_size, int integral_size,
2562
+ Char decimal_point) -> OutputIt {
2563
+ // Buffer is large enough to hold digits (digits10 + 1) and a decimal point.
2564
+ Char buffer[digits10<UInt>() + 2];
2565
+ auto end = write_significand(buffer, significand, significand_size,
2566
+ integral_size, decimal_point);
2567
+ return detail::copy_str_noinline<Char>(buffer, end, out);
2568
+ }
2569
+
2570
+ template <typename OutputIt, typename Char>
2571
+ FMT_CONSTEXPR auto write_significand(OutputIt out, const char* significand,
2572
+ int significand_size, int integral_size,
2573
+ Char decimal_point) -> OutputIt {
2574
+ out = detail::copy_str_noinline<Char>(significand,
2575
+ significand + integral_size, out);
2576
+ if (!decimal_point) return out;
2577
+ *out++ = decimal_point;
2578
+ return detail::copy_str_noinline<Char>(significand + integral_size,
2579
+ significand + significand_size, out);
2580
+ }
2581
+
2582
+ template <typename OutputIt, typename Char, typename T, typename Grouping>
2583
+ FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand,
2584
+ int significand_size, int integral_size,
2585
+ Char decimal_point,
2586
+ const Grouping& grouping) -> OutputIt {
2587
+ if (!grouping.has_separator()) {
2588
+ return write_significand(out, significand, significand_size, integral_size,
2589
+ decimal_point);
2590
+ }
2591
+ auto buffer = basic_memory_buffer<Char>();
2592
+ write_significand(buffer_appender<Char>(buffer), significand,
2593
+ significand_size, integral_size, decimal_point);
2594
+ grouping.apply(
2595
+ out, basic_string_view<Char>(buffer.data(), to_unsigned(integral_size)));
2596
+ return detail::copy_str_noinline<Char>(buffer.data() + integral_size,
2597
+ buffer.end(), out);
2598
+ }
2599
+
2600
+ template <typename OutputIt, typename DecimalFP, typename Char,
2601
+ typename Grouping = digit_grouping<Char>>
2602
+ FMT_CONSTEXPR20 auto do_write_float(OutputIt out, const DecimalFP& f,
2603
+ const format_specs<Char>& specs,
2604
+ float_specs fspecs, locale_ref loc)
2605
+ -> OutputIt {
2606
+ auto significand = f.significand;
2607
+ int significand_size = get_significand_size(f);
2608
+ const Char zero = static_cast<Char>('0');
2609
+ auto sign = fspecs.sign;
2610
+ size_t size = to_unsigned(significand_size) + (sign ? 1 : 0);
2611
+ using iterator = reserve_iterator<OutputIt>;
2612
+
2613
+ Char decimal_point =
2614
+ fspecs.locale ? detail::decimal_point<Char>(loc) : static_cast<Char>('.');
2615
+
2616
+ int output_exp = f.exponent + significand_size - 1;
2617
+ auto use_exp_format = [=]() {
2618
+ if (fspecs.format == float_format::exp) return true;
2619
+ if (fspecs.format != float_format::general) return false;
2620
+ // Use the fixed notation if the exponent is in [exp_lower, exp_upper),
2621
+ // e.g. 0.0001 instead of 1e-04. Otherwise use the exponent notation.
2622
+ const int exp_lower = -4, exp_upper = 16;
2623
+ return output_exp < exp_lower ||
2624
+ output_exp >= (fspecs.precision > 0 ? fspecs.precision : exp_upper);
2625
+ };
2626
+ if (use_exp_format()) {
2627
+ int num_zeros = 0;
2628
+ if (fspecs.showpoint) {
2629
+ num_zeros = fspecs.precision - significand_size;
2630
+ if (num_zeros < 0) num_zeros = 0;
2631
+ size += to_unsigned(num_zeros);
2632
+ } else if (significand_size == 1) {
2633
+ decimal_point = Char();
2634
+ }
2635
+ auto abs_output_exp = output_exp >= 0 ? output_exp : -output_exp;
2636
+ int exp_digits = 2;
2637
+ if (abs_output_exp >= 100) exp_digits = abs_output_exp >= 1000 ? 4 : 3;
2638
+
2639
+ size += to_unsigned((decimal_point ? 1 : 0) + 2 + exp_digits);
2640
+ char exp_char = fspecs.upper ? 'E' : 'e';
2641
+ auto write = [=](iterator it) {
2642
+ if (sign) *it++ = detail::sign<Char>(sign);
2643
+ // Insert a decimal point after the first digit and add an exponent.
2644
+ it = write_significand(it, significand, significand_size, 1,
2645
+ decimal_point);
2646
+ if (num_zeros > 0) it = detail::fill_n(it, num_zeros, zero);
2647
+ *it++ = static_cast<Char>(exp_char);
2648
+ return write_exponent<Char>(output_exp, it);
2649
+ };
2650
+ return specs.width > 0 ? write_padded<align::right>(out, specs, size, write)
2651
+ : base_iterator(out, write(reserve(out, size)));
2652
+ }
2653
+
2654
+ int exp = f.exponent + significand_size;
2655
+ if (f.exponent >= 0) {
2656
+ // 1234e5 -> 123400000[.0+]
2657
+ size += to_unsigned(f.exponent);
2658
+ int num_zeros = fspecs.precision - exp;
2659
+ abort_fuzzing_if(num_zeros > 5000);
2660
+ if (fspecs.showpoint) {
2661
+ ++size;
2662
+ if (num_zeros <= 0 && fspecs.format != float_format::fixed) num_zeros = 0;
2663
+ if (num_zeros > 0) size += to_unsigned(num_zeros);
2664
+ }
2665
+ auto grouping = Grouping(loc, fspecs.locale);
2666
+ size += to_unsigned(grouping.count_separators(exp));
2667
+ return write_padded<align::right>(out, specs, size, [&](iterator it) {
2668
+ if (sign) *it++ = detail::sign<Char>(sign);
2669
+ it = write_significand<Char>(it, significand, significand_size,
2670
+ f.exponent, grouping);
2671
+ if (!fspecs.showpoint) return it;
2672
+ *it++ = decimal_point;
2673
+ return num_zeros > 0 ? detail::fill_n(it, num_zeros, zero) : it;
2674
+ });
2675
+ } else if (exp > 0) {
2676
+ // 1234e-2 -> 12.34[0+]
2677
+ int num_zeros = fspecs.showpoint ? fspecs.precision - significand_size : 0;
2678
+ size += 1 + to_unsigned(num_zeros > 0 ? num_zeros : 0);
2679
+ auto grouping = Grouping(loc, fspecs.locale);
2680
+ size += to_unsigned(grouping.count_separators(exp));
2681
+ return write_padded<align::right>(out, specs, size, [&](iterator it) {
2682
+ if (sign) *it++ = detail::sign<Char>(sign);
2683
+ it = write_significand(it, significand, significand_size, exp,
2684
+ decimal_point, grouping);
2685
+ return num_zeros > 0 ? detail::fill_n(it, num_zeros, zero) : it;
2686
+ });
2687
+ }
2688
+ // 1234e-6 -> 0.001234
2689
+ int num_zeros = -exp;
2690
+ if (significand_size == 0 && fspecs.precision >= 0 &&
2691
+ fspecs.precision < num_zeros) {
2692
+ num_zeros = fspecs.precision;
2693
+ }
2694
+ bool pointy = num_zeros != 0 || significand_size != 0 || fspecs.showpoint;
2695
+ size += 1 + (pointy ? 1 : 0) + to_unsigned(num_zeros);
2696
+ return write_padded<align::right>(out, specs, size, [&](iterator it) {
2697
+ if (sign) *it++ = detail::sign<Char>(sign);
2698
+ *it++ = zero;
2699
+ if (!pointy) return it;
2700
+ *it++ = decimal_point;
2701
+ it = detail::fill_n(it, num_zeros, zero);
2702
+ return write_significand<Char>(it, significand, significand_size);
2703
+ });
2704
+ }
2705
+
2706
+ template <typename Char> class fallback_digit_grouping {
2707
+ public:
2708
+ constexpr fallback_digit_grouping(locale_ref, bool) {}
2709
+
2710
+ constexpr auto has_separator() const -> bool { return false; }
2711
+
2712
+ constexpr auto count_separators(int) const -> int { return 0; }
2713
+
2714
+ template <typename Out, typename C>
2715
+ constexpr auto apply(Out out, basic_string_view<C>) const -> Out {
2716
+ return out;
2717
+ }
2718
+ };
2719
+
2720
+ template <typename OutputIt, typename DecimalFP, typename Char>
2721
+ FMT_CONSTEXPR20 auto write_float(OutputIt out, const DecimalFP& f,
2722
+ const format_specs<Char>& specs,
2723
+ float_specs fspecs, locale_ref loc)
2724
+ -> OutputIt {
2725
+ if (is_constant_evaluated()) {
2726
+ return do_write_float<OutputIt, DecimalFP, Char,
2727
+ fallback_digit_grouping<Char>>(out, f, specs, fspecs,
2728
+ loc);
2729
+ } else {
2730
+ return do_write_float(out, f, specs, fspecs, loc);
2731
+ }
2732
+ }
2733
+
2734
+ template <typename T> constexpr auto isnan(T value) -> bool {
2735
+ return !(value >= value); // std::isnan doesn't support __float128.
2736
+ }
2737
+
2738
+ template <typename T, typename Enable = void>
2739
+ struct has_isfinite : std::false_type {};
2740
+
2741
+ template <typename T>
2742
+ struct has_isfinite<T, enable_if_t<sizeof(std::isfinite(T())) != 0>>
2743
+ : std::true_type {};
2744
+
2745
+ template <typename T, FMT_ENABLE_IF(std::is_floating_point<T>::value&&
2746
+ has_isfinite<T>::value)>
2747
+ FMT_CONSTEXPR20 auto isfinite(T value) -> bool {
2748
+ constexpr T inf = T(std::numeric_limits<double>::infinity());
2749
+ if (is_constant_evaluated())
2750
+ return !detail::isnan(value) && value < inf && value > -inf;
2751
+ return std::isfinite(value);
2752
+ }
2753
+ template <typename T, FMT_ENABLE_IF(!has_isfinite<T>::value)>
2754
+ FMT_CONSTEXPR auto isfinite(T value) -> bool {
2755
+ T inf = T(std::numeric_limits<double>::infinity());
2756
+ // std::isfinite doesn't support __float128.
2757
+ return !detail::isnan(value) && value < inf && value > -inf;
2758
+ }
2759
+
2760
+ template <typename T, FMT_ENABLE_IF(is_floating_point<T>::value)>
2761
+ FMT_INLINE FMT_CONSTEXPR bool signbit(T value) {
2762
+ if (is_constant_evaluated()) {
2763
+ #ifdef __cpp_if_constexpr
2764
+ if constexpr (std::numeric_limits<double>::is_iec559) {
2765
+ auto bits = detail::bit_cast<uint64_t>(static_cast<double>(value));
2766
+ return (bits >> (num_bits<uint64_t>() - 1)) != 0;
2767
+ }
2768
+ #endif
2769
+ }
2770
+ return std::signbit(static_cast<double>(value));
2771
+ }
2772
+
2773
+ inline FMT_CONSTEXPR20 void adjust_precision(int& precision, int exp10) {
2774
+ // Adjust fixed precision by exponent because it is relative to decimal
2775
+ // point.
2776
+ if (exp10 > 0 && precision > max_value<int>() - exp10)
2777
+ FMT_THROW(format_error("number is too big"));
2778
+ precision += exp10;
2779
+ }
2780
+
2781
+ class bigint {
2782
+ private:
2783
+ // A bigint is stored as an array of bigits (big digits), with bigit at index
2784
+ // 0 being the least significant one.
2785
+ using bigit = uint32_t;
2786
+ using double_bigit = uint64_t;
2787
+ enum { bigits_capacity = 32 };
2788
+ basic_memory_buffer<bigit, bigits_capacity> bigits_;
2789
+ int exp_;
2790
+
2791
+ FMT_CONSTEXPR20 auto operator[](int index) const -> bigit {
2792
+ return bigits_[to_unsigned(index)];
2793
+ }
2794
+ FMT_CONSTEXPR20 auto operator[](int index) -> bigit& {
2795
+ return bigits_[to_unsigned(index)];
2796
+ }
2797
+
2798
+ static constexpr const int bigit_bits = num_bits<bigit>();
2799
+
2800
+ friend struct formatter<bigint>;
2801
+
2802
+ FMT_CONSTEXPR20 void subtract_bigits(int index, bigit other, bigit& borrow) {
2803
+ auto result = static_cast<double_bigit>((*this)[index]) - other - borrow;
2804
+ (*this)[index] = static_cast<bigit>(result);
2805
+ borrow = static_cast<bigit>(result >> (bigit_bits * 2 - 1));
2806
+ }
2807
+
2808
+ FMT_CONSTEXPR20 void remove_leading_zeros() {
2809
+ int num_bigits = static_cast<int>(bigits_.size()) - 1;
2810
+ while (num_bigits > 0 && (*this)[num_bigits] == 0) --num_bigits;
2811
+ bigits_.resize(to_unsigned(num_bigits + 1));
2812
+ }
2813
+
2814
+ // Computes *this -= other assuming aligned bigints and *this >= other.
2815
+ FMT_CONSTEXPR20 void subtract_aligned(const bigint& other) {
2816
+ FMT_ASSERT(other.exp_ >= exp_, "unaligned bigints");
2817
+ FMT_ASSERT(compare(*this, other) >= 0, "");
2818
+ bigit borrow = 0;
2819
+ int i = other.exp_ - exp_;
2820
+ for (size_t j = 0, n = other.bigits_.size(); j != n; ++i, ++j)
2821
+ subtract_bigits(i, other.bigits_[j], borrow);
2822
+ while (borrow > 0) subtract_bigits(i, 0, borrow);
2823
+ remove_leading_zeros();
2824
+ }
2825
+
2826
+ FMT_CONSTEXPR20 void multiply(uint32_t value) {
2827
+ const double_bigit wide_value = value;
2828
+ bigit carry = 0;
2829
+ for (size_t i = 0, n = bigits_.size(); i < n; ++i) {
2830
+ double_bigit result = bigits_[i] * wide_value + carry;
2831
+ bigits_[i] = static_cast<bigit>(result);
2832
+ carry = static_cast<bigit>(result >> bigit_bits);
2833
+ }
2834
+ if (carry != 0) bigits_.push_back(carry);
2835
+ }
2836
+
2837
+ template <typename UInt, FMT_ENABLE_IF(std::is_same<UInt, uint64_t>::value ||
2838
+ std::is_same<UInt, uint128_t>::value)>
2839
+ FMT_CONSTEXPR20 void multiply(UInt value) {
2840
+ using half_uint =
2841
+ conditional_t<std::is_same<UInt, uint128_t>::value, uint64_t, uint32_t>;
2842
+ const int shift = num_bits<half_uint>() - bigit_bits;
2843
+ const UInt lower = static_cast<half_uint>(value);
2844
+ const UInt upper = value >> num_bits<half_uint>();
2845
+ UInt carry = 0;
2846
+ for (size_t i = 0, n = bigits_.size(); i < n; ++i) {
2847
+ UInt result = lower * bigits_[i] + static_cast<bigit>(carry);
2848
+ carry = (upper * bigits_[i] << shift) + (result >> bigit_bits) +
2849
+ (carry >> bigit_bits);
2850
+ bigits_[i] = static_cast<bigit>(result);
2851
+ }
2852
+ while (carry != 0) {
2853
+ bigits_.push_back(static_cast<bigit>(carry));
2854
+ carry >>= bigit_bits;
2855
+ }
2856
+ }
2857
+
2858
+ template <typename UInt, FMT_ENABLE_IF(std::is_same<UInt, uint64_t>::value ||
2859
+ std::is_same<UInt, uint128_t>::value)>
2860
+ FMT_CONSTEXPR20 void assign(UInt n) {
2861
+ size_t num_bigits = 0;
2862
+ do {
2863
+ bigits_[num_bigits++] = static_cast<bigit>(n);
2864
+ n >>= bigit_bits;
2865
+ } while (n != 0);
2866
+ bigits_.resize(num_bigits);
2867
+ exp_ = 0;
2868
+ }
2869
+
2870
+ public:
2871
+ FMT_CONSTEXPR20 bigint() : exp_(0) {}
2872
+ explicit bigint(uint64_t n) { assign(n); }
2873
+
2874
+ bigint(const bigint&) = delete;
2875
+ void operator=(const bigint&) = delete;
2876
+
2877
+ FMT_CONSTEXPR20 void assign(const bigint& other) {
2878
+ auto size = other.bigits_.size();
2879
+ bigits_.resize(size);
2880
+ auto data = other.bigits_.data();
2881
+ copy_str<bigit>(data, data + size, bigits_.data());
2882
+ exp_ = other.exp_;
2883
+ }
2884
+
2885
+ template <typename Int> FMT_CONSTEXPR20 void operator=(Int n) {
2886
+ FMT_ASSERT(n > 0, "");
2887
+ assign(uint64_or_128_t<Int>(n));
2888
+ }
2889
+
2890
+ FMT_CONSTEXPR20 auto num_bigits() const -> int {
2891
+ return static_cast<int>(bigits_.size()) + exp_;
2892
+ }
2893
+
2894
+ FMT_NOINLINE FMT_CONSTEXPR20 auto operator<<=(int shift) -> bigint& {
2895
+ FMT_ASSERT(shift >= 0, "");
2896
+ exp_ += shift / bigit_bits;
2897
+ shift %= bigit_bits;
2898
+ if (shift == 0) return *this;
2899
+ bigit carry = 0;
2900
+ for (size_t i = 0, n = bigits_.size(); i < n; ++i) {
2901
+ bigit c = bigits_[i] >> (bigit_bits - shift);
2902
+ bigits_[i] = (bigits_[i] << shift) + carry;
2903
+ carry = c;
2904
+ }
2905
+ if (carry != 0) bigits_.push_back(carry);
2906
+ return *this;
2907
+ }
2908
+
2909
+ template <typename Int>
2910
+ FMT_CONSTEXPR20 auto operator*=(Int value) -> bigint& {
2911
+ FMT_ASSERT(value > 0, "");
2912
+ multiply(uint32_or_64_or_128_t<Int>(value));
2913
+ return *this;
2914
+ }
2915
+
2916
+ friend FMT_CONSTEXPR20 auto compare(const bigint& lhs, const bigint& rhs)
2917
+ -> int {
2918
+ int num_lhs_bigits = lhs.num_bigits(), num_rhs_bigits = rhs.num_bigits();
2919
+ if (num_lhs_bigits != num_rhs_bigits)
2920
+ return num_lhs_bigits > num_rhs_bigits ? 1 : -1;
2921
+ int i = static_cast<int>(lhs.bigits_.size()) - 1;
2922
+ int j = static_cast<int>(rhs.bigits_.size()) - 1;
2923
+ int end = i - j;
2924
+ if (end < 0) end = 0;
2925
+ for (; i >= end; --i, --j) {
2926
+ bigit lhs_bigit = lhs[i], rhs_bigit = rhs[j];
2927
+ if (lhs_bigit != rhs_bigit) return lhs_bigit > rhs_bigit ? 1 : -1;
2928
+ }
2929
+ if (i != j) return i > j ? 1 : -1;
2930
+ return 0;
2931
+ }
2932
+
2933
+ // Returns compare(lhs1 + lhs2, rhs).
2934
+ friend FMT_CONSTEXPR20 auto add_compare(const bigint& lhs1,
2935
+ const bigint& lhs2, const bigint& rhs)
2936
+ -> int {
2937
+ auto minimum = [](int a, int b) { return a < b ? a : b; };
2938
+ auto maximum = [](int a, int b) { return a > b ? a : b; };
2939
+ int max_lhs_bigits = maximum(lhs1.num_bigits(), lhs2.num_bigits());
2940
+ int num_rhs_bigits = rhs.num_bigits();
2941
+ if (max_lhs_bigits + 1 < num_rhs_bigits) return -1;
2942
+ if (max_lhs_bigits > num_rhs_bigits) return 1;
2943
+ auto get_bigit = [](const bigint& n, int i) -> bigit {
2944
+ return i >= n.exp_ && i < n.num_bigits() ? n[i - n.exp_] : 0;
2945
+ };
2946
+ double_bigit borrow = 0;
2947
+ int min_exp = minimum(minimum(lhs1.exp_, lhs2.exp_), rhs.exp_);
2948
+ for (int i = num_rhs_bigits - 1; i >= min_exp; --i) {
2949
+ double_bigit sum =
2950
+ static_cast<double_bigit>(get_bigit(lhs1, i)) + get_bigit(lhs2, i);
2951
+ bigit rhs_bigit = get_bigit(rhs, i);
2952
+ if (sum > rhs_bigit + borrow) return 1;
2953
+ borrow = rhs_bigit + borrow - sum;
2954
+ if (borrow > 1) return -1;
2955
+ borrow <<= bigit_bits;
2956
+ }
2957
+ return borrow != 0 ? -1 : 0;
2958
+ }
2959
+
2960
+ // Assigns pow(10, exp) to this bigint.
2961
+ FMT_CONSTEXPR20 void assign_pow10(int exp) {
2962
+ FMT_ASSERT(exp >= 0, "");
2963
+ if (exp == 0) return *this = 1;
2964
+ // Find the top bit.
2965
+ int bitmask = 1;
2966
+ while (exp >= bitmask) bitmask <<= 1;
2967
+ bitmask >>= 1;
2968
+ // pow(10, exp) = pow(5, exp) * pow(2, exp). First compute pow(5, exp) by
2969
+ // repeated squaring and multiplication.
2970
+ *this = 5;
2971
+ bitmask >>= 1;
2972
+ while (bitmask != 0) {
2973
+ square();
2974
+ if ((exp & bitmask) != 0) *this *= 5;
2975
+ bitmask >>= 1;
2976
+ }
2977
+ *this <<= exp; // Multiply by pow(2, exp) by shifting.
2978
+ }
2979
+
2980
+ FMT_CONSTEXPR20 void square() {
2981
+ int num_bigits = static_cast<int>(bigits_.size());
2982
+ int num_result_bigits = 2 * num_bigits;
2983
+ basic_memory_buffer<bigit, bigits_capacity> n(std::move(bigits_));
2984
+ bigits_.resize(to_unsigned(num_result_bigits));
2985
+ auto sum = uint128_t();
2986
+ for (int bigit_index = 0; bigit_index < num_bigits; ++bigit_index) {
2987
+ // Compute bigit at position bigit_index of the result by adding
2988
+ // cross-product terms n[i] * n[j] such that i + j == bigit_index.
2989
+ for (int i = 0, j = bigit_index; j >= 0; ++i, --j) {
2990
+ // Most terms are multiplied twice which can be optimized in the future.
2991
+ sum += static_cast<double_bigit>(n[i]) * n[j];
2992
+ }
2993
+ (*this)[bigit_index] = static_cast<bigit>(sum);
2994
+ sum >>= num_bits<bigit>(); // Compute the carry.
2995
+ }
2996
+ // Do the same for the top half.
2997
+ for (int bigit_index = num_bigits; bigit_index < num_result_bigits;
2998
+ ++bigit_index) {
2999
+ for (int j = num_bigits - 1, i = bigit_index - j; i < num_bigits;)
3000
+ sum += static_cast<double_bigit>(n[i++]) * n[j--];
3001
+ (*this)[bigit_index] = static_cast<bigit>(sum);
3002
+ sum >>= num_bits<bigit>();
3003
+ }
3004
+ remove_leading_zeros();
3005
+ exp_ *= 2;
3006
+ }
3007
+
3008
+ // If this bigint has a bigger exponent than other, adds trailing zero to make
3009
+ // exponents equal. This simplifies some operations such as subtraction.
3010
+ FMT_CONSTEXPR20 void align(const bigint& other) {
3011
+ int exp_difference = exp_ - other.exp_;
3012
+ if (exp_difference <= 0) return;
3013
+ int num_bigits = static_cast<int>(bigits_.size());
3014
+ bigits_.resize(to_unsigned(num_bigits + exp_difference));
3015
+ for (int i = num_bigits - 1, j = i + exp_difference; i >= 0; --i, --j)
3016
+ bigits_[j] = bigits_[i];
3017
+ std::uninitialized_fill_n(bigits_.data(), exp_difference, 0u);
3018
+ exp_ -= exp_difference;
3019
+ }
3020
+
3021
+ // Divides this bignum by divisor, assigning the remainder to this and
3022
+ // returning the quotient.
3023
+ FMT_CONSTEXPR20 auto divmod_assign(const bigint& divisor) -> int {
3024
+ FMT_ASSERT(this != &divisor, "");
3025
+ if (compare(*this, divisor) < 0) return 0;
3026
+ FMT_ASSERT(divisor.bigits_[divisor.bigits_.size() - 1u] != 0, "");
3027
+ align(divisor);
3028
+ int quotient = 0;
3029
+ do {
3030
+ subtract_aligned(divisor);
3031
+ ++quotient;
3032
+ } while (compare(*this, divisor) >= 0);
3033
+ return quotient;
3034
+ }
3035
+ };
3036
+
3037
+ // format_dragon flags.
3038
+ enum dragon {
3039
+ predecessor_closer = 1,
3040
+ fixup = 2, // Run fixup to correct exp10 which can be off by one.
3041
+ fixed = 4,
3042
+ };
3043
+
3044
+ // Formats a floating-point number using a variation of the Fixed-Precision
3045
+ // Positive Floating-Point Printout ((FPP)^2) algorithm by Steele & White:
3046
+ // https://fmt.dev/papers/p372-steele.pdf.
3047
+ FMT_CONSTEXPR20 inline void format_dragon(basic_fp<uint128_t> value,
3048
+ unsigned flags, int num_digits,
3049
+ buffer<char>& buf, int& exp10) {
3050
+ bigint numerator; // 2 * R in (FPP)^2.
3051
+ bigint denominator; // 2 * S in (FPP)^2.
3052
+ // lower and upper are differences between value and corresponding boundaries.
3053
+ bigint lower; // (M^- in (FPP)^2).
3054
+ bigint upper_store; // upper's value if different from lower.
3055
+ bigint* upper = nullptr; // (M^+ in (FPP)^2).
3056
+ // Shift numerator and denominator by an extra bit or two (if lower boundary
3057
+ // is closer) to make lower and upper integers. This eliminates multiplication
3058
+ // by 2 during later computations.
3059
+ bool is_predecessor_closer = (flags & dragon::predecessor_closer) != 0;
3060
+ int shift = is_predecessor_closer ? 2 : 1;
3061
+ if (value.e >= 0) {
3062
+ numerator = value.f;
3063
+ numerator <<= value.e + shift;
3064
+ lower = 1;
3065
+ lower <<= value.e;
3066
+ if (is_predecessor_closer) {
3067
+ upper_store = 1;
3068
+ upper_store <<= value.e + 1;
3069
+ upper = &upper_store;
3070
+ }
3071
+ denominator.assign_pow10(exp10);
3072
+ denominator <<= shift;
3073
+ } else if (exp10 < 0) {
3074
+ numerator.assign_pow10(-exp10);
3075
+ lower.assign(numerator);
3076
+ if (is_predecessor_closer) {
3077
+ upper_store.assign(numerator);
3078
+ upper_store <<= 1;
3079
+ upper = &upper_store;
3080
+ }
3081
+ numerator *= value.f;
3082
+ numerator <<= shift;
3083
+ denominator = 1;
3084
+ denominator <<= shift - value.e;
3085
+ } else {
3086
+ numerator = value.f;
3087
+ numerator <<= shift;
3088
+ denominator.assign_pow10(exp10);
3089
+ denominator <<= shift - value.e;
3090
+ lower = 1;
3091
+ if (is_predecessor_closer) {
3092
+ upper_store = 1ULL << 1;
3093
+ upper = &upper_store;
3094
+ }
3095
+ }
3096
+ int even = static_cast<int>((value.f & 1) == 0);
3097
+ if (!upper) upper = &lower;
3098
+ bool shortest = num_digits < 0;
3099
+ if ((flags & dragon::fixup) != 0) {
3100
+ if (add_compare(numerator, *upper, denominator) + even <= 0) {
3101
+ --exp10;
3102
+ numerator *= 10;
3103
+ if (num_digits < 0) {
3104
+ lower *= 10;
3105
+ if (upper != &lower) *upper *= 10;
3106
+ }
3107
+ }
3108
+ if ((flags & dragon::fixed) != 0) adjust_precision(num_digits, exp10 + 1);
3109
+ }
3110
+ // Invariant: value == (numerator / denominator) * pow(10, exp10).
3111
+ if (shortest) {
3112
+ // Generate the shortest representation.
3113
+ num_digits = 0;
3114
+ char* data = buf.data();
3115
+ for (;;) {
3116
+ int digit = numerator.divmod_assign(denominator);
3117
+ bool low = compare(numerator, lower) - even < 0; // numerator <[=] lower.
3118
+ // numerator + upper >[=] pow10:
3119
+ bool high = add_compare(numerator, *upper, denominator) + even > 0;
3120
+ data[num_digits++] = static_cast<char>('0' + digit);
3121
+ if (low || high) {
3122
+ if (!low) {
3123
+ ++data[num_digits - 1];
3124
+ } else if (high) {
3125
+ int result = add_compare(numerator, numerator, denominator);
3126
+ // Round half to even.
3127
+ if (result > 0 || (result == 0 && (digit % 2) != 0))
3128
+ ++data[num_digits - 1];
3129
+ }
3130
+ buf.try_resize(to_unsigned(num_digits));
3131
+ exp10 -= num_digits - 1;
3132
+ return;
3133
+ }
3134
+ numerator *= 10;
3135
+ lower *= 10;
3136
+ if (upper != &lower) *upper *= 10;
3137
+ }
3138
+ }
3139
+ // Generate the given number of digits.
3140
+ exp10 -= num_digits - 1;
3141
+ if (num_digits <= 0) {
3142
+ denominator *= 10;
3143
+ auto digit = add_compare(numerator, numerator, denominator) > 0 ? '1' : '0';
3144
+ buf.push_back(digit);
3145
+ return;
3146
+ }
3147
+ buf.try_resize(to_unsigned(num_digits));
3148
+ for (int i = 0; i < num_digits - 1; ++i) {
3149
+ int digit = numerator.divmod_assign(denominator);
3150
+ buf[i] = static_cast<char>('0' + digit);
3151
+ numerator *= 10;
3152
+ }
3153
+ int digit = numerator.divmod_assign(denominator);
3154
+ auto result = add_compare(numerator, numerator, denominator);
3155
+ if (result > 0 || (result == 0 && (digit % 2) != 0)) {
3156
+ if (digit == 9) {
3157
+ const auto overflow = '0' + 10;
3158
+ buf[num_digits - 1] = overflow;
3159
+ // Propagate the carry.
3160
+ for (int i = num_digits - 1; i > 0 && buf[i] == overflow; --i) {
3161
+ buf[i] = '0';
3162
+ ++buf[i - 1];
3163
+ }
3164
+ if (buf[0] == overflow) {
3165
+ buf[0] = '1';
3166
+ if ((flags & dragon::fixed) != 0)
3167
+ buf.push_back('0');
3168
+ else
3169
+ ++exp10;
3170
+ }
3171
+ return;
3172
+ }
3173
+ ++digit;
3174
+ }
3175
+ buf[num_digits - 1] = static_cast<char>('0' + digit);
3176
+ }
3177
+
3178
+ // Formats a floating-point number using the hexfloat format.
3179
+ template <typename Float, FMT_ENABLE_IF(!is_double_double<Float>::value)>
3180
+ FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision,
3181
+ float_specs specs, buffer<char>& buf) {
3182
+ // float is passed as double to reduce the number of instantiations and to
3183
+ // simplify implementation.
3184
+ static_assert(!std::is_same<Float, float>::value, "");
3185
+
3186
+ using info = dragonbox::float_info<Float>;
3187
+
3188
+ // Assume Float is in the format [sign][exponent][significand].
3189
+ using carrier_uint = typename info::carrier_uint;
3190
+
3191
+ constexpr auto num_float_significand_bits =
3192
+ detail::num_significand_bits<Float>();
3193
+
3194
+ basic_fp<carrier_uint> f(value);
3195
+ f.e += num_float_significand_bits;
3196
+ if (!has_implicit_bit<Float>()) --f.e;
3197
+
3198
+ constexpr auto num_fraction_bits =
3199
+ num_float_significand_bits + (has_implicit_bit<Float>() ? 1 : 0);
3200
+ constexpr auto num_xdigits = (num_fraction_bits + 3) / 4;
3201
+
3202
+ constexpr auto leading_shift = ((num_xdigits - 1) * 4);
3203
+ const auto leading_mask = carrier_uint(0xF) << leading_shift;
3204
+ const auto leading_xdigit =
3205
+ static_cast<uint32_t>((f.f & leading_mask) >> leading_shift);
3206
+ if (leading_xdigit > 1) f.e -= (32 - countl_zero(leading_xdigit) - 1);
3207
+
3208
+ int print_xdigits = num_xdigits - 1;
3209
+ if (precision >= 0 && print_xdigits > precision) {
3210
+ const int shift = ((print_xdigits - precision - 1) * 4);
3211
+ const auto mask = carrier_uint(0xF) << shift;
3212
+ const auto v = static_cast<uint32_t>((f.f & mask) >> shift);
3213
+
3214
+ if (v >= 8) {
3215
+ const auto inc = carrier_uint(1) << (shift + 4);
3216
+ f.f += inc;
3217
+ f.f &= ~(inc - 1);
3218
+ }
3219
+
3220
+ // Check long double overflow
3221
+ if (!has_implicit_bit<Float>()) {
3222
+ const auto implicit_bit = carrier_uint(1) << num_float_significand_bits;
3223
+ if ((f.f & implicit_bit) == implicit_bit) {
3224
+ f.f >>= 4;
3225
+ f.e += 4;
3226
+ }
3227
+ }
3228
+
3229
+ print_xdigits = precision;
3230
+ }
3231
+
3232
+ char xdigits[num_bits<carrier_uint>() / 4];
3233
+ detail::fill_n(xdigits, sizeof(xdigits), '0');
3234
+ format_uint<4>(xdigits, f.f, num_xdigits, specs.upper);
3235
+
3236
+ // Remove zero tail
3237
+ while (print_xdigits > 0 && xdigits[print_xdigits] == '0') --print_xdigits;
3238
+
3239
+ buf.push_back('0');
3240
+ buf.push_back(specs.upper ? 'X' : 'x');
3241
+ buf.push_back(xdigits[0]);
3242
+ if (specs.showpoint || print_xdigits > 0 || print_xdigits < precision)
3243
+ buf.push_back('.');
3244
+ buf.append(xdigits + 1, xdigits + 1 + print_xdigits);
3245
+ for (; print_xdigits < precision; ++print_xdigits) buf.push_back('0');
3246
+
3247
+ buf.push_back(specs.upper ? 'P' : 'p');
3248
+
3249
+ uint32_t abs_e;
3250
+ if (f.e < 0) {
3251
+ buf.push_back('-');
3252
+ abs_e = static_cast<uint32_t>(-f.e);
3253
+ } else {
3254
+ buf.push_back('+');
3255
+ abs_e = static_cast<uint32_t>(f.e);
3256
+ }
3257
+ format_decimal<char>(appender(buf), abs_e, detail::count_digits(abs_e));
3258
+ }
3259
+
3260
+ template <typename Float, FMT_ENABLE_IF(is_double_double<Float>::value)>
3261
+ FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision,
3262
+ float_specs specs, buffer<char>& buf) {
3263
+ format_hexfloat(static_cast<double>(value), precision, specs, buf);
3264
+ }
3265
+
3266
+ constexpr auto fractional_part_rounding_thresholds(int index) -> uint32_t {
3267
+ // For checking rounding thresholds.
3268
+ // The kth entry is chosen to be the smallest integer such that the
3269
+ // upper 32-bits of 10^(k+1) times it is strictly bigger than 5 * 10^k.
3270
+ // It is equal to ceil(2^31 + 2^32/10^(k + 1)).
3271
+ // These are stored in a string literal because we cannot have static arrays
3272
+ // in constexpr functions and non-static ones are poorly optimized.
3273
+ return U"\x9999999a\x828f5c29\x80418938\x80068db9\x8000a7c6\x800010c7"
3274
+ U"\x800001ae\x8000002b"[index];
3275
+ }
3276
+
3277
+ template <typename Float>
3278
+ FMT_CONSTEXPR20 auto format_float(Float value, int precision, float_specs specs,
3279
+ buffer<char>& buf) -> int {
3280
+ // float is passed as double to reduce the number of instantiations.
3281
+ static_assert(!std::is_same<Float, float>::value, "");
3282
+ FMT_ASSERT(value >= 0, "value is negative");
3283
+ auto converted_value = convert_float(value);
3284
+
3285
+ const bool fixed = specs.format == float_format::fixed;
3286
+ if (value <= 0) { // <= instead of == to silence a warning.
3287
+ if (precision <= 0 || !fixed) {
3288
+ buf.push_back('0');
3289
+ return 0;
3290
+ }
3291
+ buf.try_resize(to_unsigned(precision));
3292
+ fill_n(buf.data(), precision, '0');
3293
+ return -precision;
3294
+ }
3295
+
3296
+ int exp = 0;
3297
+ bool use_dragon = true;
3298
+ unsigned dragon_flags = 0;
3299
+ if (!is_fast_float<Float>() || is_constant_evaluated()) {
3300
+ const auto inv_log2_10 = 0.3010299956639812; // 1 / log2(10)
3301
+ using info = dragonbox::float_info<decltype(converted_value)>;
3302
+ const auto f = basic_fp<typename info::carrier_uint>(converted_value);
3303
+ // Compute exp, an approximate power of 10, such that
3304
+ // 10^(exp - 1) <= value < 10^exp or 10^exp <= value < 10^(exp + 1).
3305
+ // This is based on log10(value) == log2(value) / log2(10) and approximation
3306
+ // of log2(value) by e + num_fraction_bits idea from double-conversion.
3307
+ auto e = (f.e + count_digits<1>(f.f) - 1) * inv_log2_10 - 1e-10;
3308
+ exp = static_cast<int>(e);
3309
+ if (e > exp) ++exp; // Compute ceil.
3310
+ dragon_flags = dragon::fixup;
3311
+ } else if (precision < 0) {
3312
+ // Use Dragonbox for the shortest format.
3313
+ if (specs.binary32) {
3314
+ auto dec = dragonbox::to_decimal(static_cast<float>(value));
3315
+ write<char>(buffer_appender<char>(buf), dec.significand);
3316
+ return dec.exponent;
3317
+ }
3318
+ auto dec = dragonbox::to_decimal(static_cast<double>(value));
3319
+ write<char>(buffer_appender<char>(buf), dec.significand);
3320
+ return dec.exponent;
3321
+ } else {
3322
+ // Extract significand bits and exponent bits.
3323
+ using info = dragonbox::float_info<double>;
3324
+ auto br = bit_cast<uint64_t>(static_cast<double>(value));
3325
+
3326
+ const uint64_t significand_mask =
3327
+ (static_cast<uint64_t>(1) << num_significand_bits<double>()) - 1;
3328
+ uint64_t significand = (br & significand_mask);
3329
+ int exponent = static_cast<int>((br & exponent_mask<double>()) >>
3330
+ num_significand_bits<double>());
3331
+
3332
+ if (exponent != 0) { // Check if normal.
3333
+ exponent -= exponent_bias<double>() + num_significand_bits<double>();
3334
+ significand |=
3335
+ (static_cast<uint64_t>(1) << num_significand_bits<double>());
3336
+ significand <<= 1;
3337
+ } else {
3338
+ // Normalize subnormal inputs.
3339
+ FMT_ASSERT(significand != 0, "zeros should not appear here");
3340
+ int shift = countl_zero(significand);
3341
+ FMT_ASSERT(shift >= num_bits<uint64_t>() - num_significand_bits<double>(),
3342
+ "");
3343
+ shift -= (num_bits<uint64_t>() - num_significand_bits<double>() - 2);
3344
+ exponent = (std::numeric_limits<double>::min_exponent -
3345
+ num_significand_bits<double>()) -
3346
+ shift;
3347
+ significand <<= shift;
3348
+ }
3349
+
3350
+ // Compute the first several nonzero decimal significand digits.
3351
+ // We call the number we get the first segment.
3352
+ const int k = info::kappa - dragonbox::floor_log10_pow2(exponent);
3353
+ exp = -k;
3354
+ const int beta = exponent + dragonbox::floor_log2_pow10(k);
3355
+ uint64_t first_segment;
3356
+ bool has_more_segments;
3357
+ int digits_in_the_first_segment;
3358
+ {
3359
+ const auto r = dragonbox::umul192_upper128(
3360
+ significand << beta, dragonbox::get_cached_power(k));
3361
+ first_segment = r.high();
3362
+ has_more_segments = r.low() != 0;
3363
+
3364
+ // The first segment can have 18 ~ 19 digits.
3365
+ if (first_segment >= 1000000000000000000ULL) {
3366
+ digits_in_the_first_segment = 19;
3367
+ } else {
3368
+ // When it is of 18-digits, we align it to 19-digits by adding a bogus
3369
+ // zero at the end.
3370
+ digits_in_the_first_segment = 18;
3371
+ first_segment *= 10;
3372
+ }
3373
+ }
3374
+
3375
+ // Compute the actual number of decimal digits to print.
3376
+ if (fixed) adjust_precision(precision, exp + digits_in_the_first_segment);
3377
+
3378
+ // Use Dragon4 only when there might be not enough digits in the first
3379
+ // segment.
3380
+ if (digits_in_the_first_segment > precision) {
3381
+ use_dragon = false;
3382
+
3383
+ if (precision <= 0) {
3384
+ exp += digits_in_the_first_segment;
3385
+
3386
+ if (precision < 0) {
3387
+ // Nothing to do, since all we have are just leading zeros.
3388
+ buf.try_resize(0);
3389
+ } else {
3390
+ // We may need to round-up.
3391
+ buf.try_resize(1);
3392
+ if ((first_segment | static_cast<uint64_t>(has_more_segments)) >
3393
+ 5000000000000000000ULL) {
3394
+ buf[0] = '1';
3395
+ } else {
3396
+ buf[0] = '0';
3397
+ }
3398
+ }
3399
+ } // precision <= 0
3400
+ else {
3401
+ exp += digits_in_the_first_segment - precision;
3402
+
3403
+ // When precision > 0, we divide the first segment into three
3404
+ // subsegments, each with 9, 9, and 0 ~ 1 digits so that each fits
3405
+ // in 32-bits which usually allows faster calculation than in
3406
+ // 64-bits. Since some compiler (e.g. MSVC) doesn't know how to optimize
3407
+ // division-by-constant for large 64-bit divisors, we do it here
3408
+ // manually. The magic number 7922816251426433760 below is equal to
3409
+ // ceil(2^(64+32) / 10^10).
3410
+ const uint32_t first_subsegment = static_cast<uint32_t>(
3411
+ dragonbox::umul128_upper64(first_segment, 7922816251426433760ULL) >>
3412
+ 32);
3413
+ const uint64_t second_third_subsegments =
3414
+ first_segment - first_subsegment * 10000000000ULL;
3415
+
3416
+ uint64_t prod;
3417
+ uint32_t digits;
3418
+ bool should_round_up;
3419
+ int number_of_digits_to_print = precision > 9 ? 9 : precision;
3420
+
3421
+ // Print a 9-digits subsegment, either the first or the second.
3422
+ auto print_subsegment = [&](uint32_t subsegment, char* buffer) {
3423
+ int number_of_digits_printed = 0;
3424
+
3425
+ // If we want to print an odd number of digits from the subsegment,
3426
+ if ((number_of_digits_to_print & 1) != 0) {
3427
+ // Convert to 64-bit fixed-point fractional form with 1-digit
3428
+ // integer part. The magic number 720575941 is a good enough
3429
+ // approximation of 2^(32 + 24) / 10^8; see
3430
+ // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case
3431
+ // for details.
3432
+ prod = ((subsegment * static_cast<uint64_t>(720575941)) >> 24) + 1;
3433
+ digits = static_cast<uint32_t>(prod >> 32);
3434
+ *buffer = static_cast<char>('0' + digits);
3435
+ number_of_digits_printed++;
3436
+ }
3437
+ // If we want to print an even number of digits from the
3438
+ // first_subsegment,
3439
+ else {
3440
+ // Convert to 64-bit fixed-point fractional form with 2-digits
3441
+ // integer part. The magic number 450359963 is a good enough
3442
+ // approximation of 2^(32 + 20) / 10^7; see
3443
+ // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case
3444
+ // for details.
3445
+ prod = ((subsegment * static_cast<uint64_t>(450359963)) >> 20) + 1;
3446
+ digits = static_cast<uint32_t>(prod >> 32);
3447
+ copy2(buffer, digits2(digits));
3448
+ number_of_digits_printed += 2;
3449
+ }
3450
+
3451
+ // Print all digit pairs.
3452
+ while (number_of_digits_printed < number_of_digits_to_print) {
3453
+ prod = static_cast<uint32_t>(prod) * static_cast<uint64_t>(100);
3454
+ digits = static_cast<uint32_t>(prod >> 32);
3455
+ copy2(buffer + number_of_digits_printed, digits2(digits));
3456
+ number_of_digits_printed += 2;
3457
+ }
3458
+ };
3459
+
3460
+ // Print first subsegment.
3461
+ print_subsegment(first_subsegment, buf.data());
3462
+
3463
+ // Perform rounding if the first subsegment is the last subsegment to
3464
+ // print.
3465
+ if (precision <= 9) {
3466
+ // Rounding inside the subsegment.
3467
+ // We round-up if:
3468
+ // - either the fractional part is strictly larger than 1/2, or
3469
+ // - the fractional part is exactly 1/2 and the last digit is odd.
3470
+ // We rely on the following observations:
3471
+ // - If fractional_part >= threshold, then the fractional part is
3472
+ // strictly larger than 1/2.
3473
+ // - If the MSB of fractional_part is set, then the fractional part
3474
+ // must be at least 1/2.
3475
+ // - When the MSB of fractional_part is set, either
3476
+ // second_third_subsegments being nonzero or has_more_segments
3477
+ // being true means there are further digits not printed, so the
3478
+ // fractional part is strictly larger than 1/2.
3479
+ if (precision < 9) {
3480
+ uint32_t fractional_part = static_cast<uint32_t>(prod);
3481
+ should_round_up =
3482
+ fractional_part >= fractional_part_rounding_thresholds(
3483
+ 8 - number_of_digits_to_print) ||
3484
+ ((fractional_part >> 31) &
3485
+ ((digits & 1) | (second_third_subsegments != 0) |
3486
+ has_more_segments)) != 0;
3487
+ }
3488
+ // Rounding at the subsegment boundary.
3489
+ // In this case, the fractional part is at least 1/2 if and only if
3490
+ // second_third_subsegments >= 5000000000ULL, and is strictly larger
3491
+ // than 1/2 if we further have either second_third_subsegments >
3492
+ // 5000000000ULL or has_more_segments == true.
3493
+ else {
3494
+ should_round_up = second_third_subsegments > 5000000000ULL ||
3495
+ (second_third_subsegments == 5000000000ULL &&
3496
+ ((digits & 1) != 0 || has_more_segments));
3497
+ }
3498
+ }
3499
+ // Otherwise, print the second subsegment.
3500
+ else {
3501
+ // Compilers are not aware of how to leverage the maximum value of
3502
+ // second_third_subsegments to find out a better magic number which
3503
+ // allows us to eliminate an additional shift. 1844674407370955162 =
3504
+ // ceil(2^64/10) < ceil(2^64*(10^9/(10^10 - 1))).
3505
+ const uint32_t second_subsegment =
3506
+ static_cast<uint32_t>(dragonbox::umul128_upper64(
3507
+ second_third_subsegments, 1844674407370955162ULL));
3508
+ const uint32_t third_subsegment =
3509
+ static_cast<uint32_t>(second_third_subsegments) -
3510
+ second_subsegment * 10;
3511
+
3512
+ number_of_digits_to_print = precision - 9;
3513
+ print_subsegment(second_subsegment, buf.data() + 9);
3514
+
3515
+ // Rounding inside the subsegment.
3516
+ if (precision < 18) {
3517
+ // The condition third_subsegment != 0 implies that the segment was
3518
+ // of 19 digits, so in this case the third segment should be
3519
+ // consisting of a genuine digit from the input.
3520
+ uint32_t fractional_part = static_cast<uint32_t>(prod);
3521
+ should_round_up =
3522
+ fractional_part >= fractional_part_rounding_thresholds(
3523
+ 8 - number_of_digits_to_print) ||
3524
+ ((fractional_part >> 31) &
3525
+ ((digits & 1) | (third_subsegment != 0) |
3526
+ has_more_segments)) != 0;
3527
+ }
3528
+ // Rounding at the subsegment boundary.
3529
+ else {
3530
+ // In this case, the segment must be of 19 digits, thus
3531
+ // the third subsegment should be consisting of a genuine digit from
3532
+ // the input.
3533
+ should_round_up = third_subsegment > 5 ||
3534
+ (third_subsegment == 5 &&
3535
+ ((digits & 1) != 0 || has_more_segments));
3536
+ }
3537
+ }
3538
+
3539
+ // Round-up if necessary.
3540
+ if (should_round_up) {
3541
+ ++buf[precision - 1];
3542
+ for (int i = precision - 1; i > 0 && buf[i] > '9'; --i) {
3543
+ buf[i] = '0';
3544
+ ++buf[i - 1];
3545
+ }
3546
+ if (buf[0] > '9') {
3547
+ buf[0] = '1';
3548
+ if (fixed)
3549
+ buf[precision++] = '0';
3550
+ else
3551
+ ++exp;
3552
+ }
3553
+ }
3554
+ buf.try_resize(to_unsigned(precision));
3555
+ }
3556
+ } // if (digits_in_the_first_segment > precision)
3557
+ else {
3558
+ // Adjust the exponent for its use in Dragon4.
3559
+ exp += digits_in_the_first_segment - 1;
3560
+ }
3561
+ }
3562
+ if (use_dragon) {
3563
+ auto f = basic_fp<uint128_t>();
3564
+ bool is_predecessor_closer = specs.binary32
3565
+ ? f.assign(static_cast<float>(value))
3566
+ : f.assign(converted_value);
3567
+ if (is_predecessor_closer) dragon_flags |= dragon::predecessor_closer;
3568
+ if (fixed) dragon_flags |= dragon::fixed;
3569
+ // Limit precision to the maximum possible number of significant digits in
3570
+ // an IEEE754 double because we don't need to generate zeros.
3571
+ const int max_double_digits = 767;
3572
+ if (precision > max_double_digits) precision = max_double_digits;
3573
+ format_dragon(f, dragon_flags, precision, buf, exp);
3574
+ }
3575
+ if (!fixed && !specs.showpoint) {
3576
+ // Remove trailing zeros.
3577
+ auto num_digits = buf.size();
3578
+ while (num_digits > 0 && buf[num_digits - 1] == '0') {
3579
+ --num_digits;
3580
+ ++exp;
3581
+ }
3582
+ buf.try_resize(num_digits);
3583
+ }
3584
+ return exp;
3585
+ }
3586
+ template <typename Char, typename OutputIt, typename T>
3587
+ FMT_CONSTEXPR20 auto write_float(OutputIt out, T value,
3588
+ format_specs<Char> specs, locale_ref loc)
3589
+ -> OutputIt {
3590
+ float_specs fspecs = parse_float_type_spec(specs);
3591
+ fspecs.sign = specs.sign;
3592
+ if (detail::signbit(value)) { // value < 0 is false for NaN so use signbit.
3593
+ fspecs.sign = sign::minus;
3594
+ value = -value;
3595
+ } else if (fspecs.sign == sign::minus) {
3596
+ fspecs.sign = sign::none;
3597
+ }
3598
+
3599
+ if (!detail::isfinite(value))
3600
+ return write_nonfinite(out, detail::isnan(value), specs, fspecs);
3601
+
3602
+ if (specs.align == align::numeric && fspecs.sign) {
3603
+ auto it = reserve(out, 1);
3604
+ *it++ = detail::sign<Char>(fspecs.sign);
3605
+ out = base_iterator(out, it);
3606
+ fspecs.sign = sign::none;
3607
+ if (specs.width != 0) --specs.width;
3608
+ }
3609
+
3610
+ memory_buffer buffer;
3611
+ if (fspecs.format == float_format::hex) {
3612
+ if (fspecs.sign) buffer.push_back(detail::sign<char>(fspecs.sign));
3613
+ format_hexfloat(convert_float(value), specs.precision, fspecs, buffer);
3614
+ return write_bytes<align::right>(out, {buffer.data(), buffer.size()},
3615
+ specs);
3616
+ }
3617
+ int precision = specs.precision >= 0 || specs.type == presentation_type::none
3618
+ ? specs.precision
3619
+ : 6;
3620
+ if (fspecs.format == float_format::exp) {
3621
+ if (precision == max_value<int>())
3622
+ throw_format_error("number is too big");
3623
+ else
3624
+ ++precision;
3625
+ } else if (fspecs.format != float_format::fixed && precision == 0) {
3626
+ precision = 1;
3627
+ }
3628
+ if (const_check(std::is_same<T, float>())) fspecs.binary32 = true;
3629
+ int exp = format_float(convert_float(value), precision, fspecs, buffer);
3630
+ fspecs.precision = precision;
3631
+ auto f = big_decimal_fp{buffer.data(), static_cast<int>(buffer.size()), exp};
3632
+ return write_float(out, f, specs, fspecs, loc);
3633
+ }
3634
+
3635
+ template <typename Char, typename OutputIt, typename T,
3636
+ FMT_ENABLE_IF(is_floating_point<T>::value)>
3637
+ FMT_CONSTEXPR20 auto write(OutputIt out, T value, format_specs<Char> specs,
3638
+ locale_ref loc = {}) -> OutputIt {
3639
+ if (const_check(!is_supported_floating_point(value))) return out;
3640
+ return specs.localized && write_loc(out, value, specs, loc)
3641
+ ? out
3642
+ : write_float(out, value, specs, loc);
3643
+ }
3644
+
3645
+ template <typename Char, typename OutputIt, typename T,
3646
+ FMT_ENABLE_IF(is_fast_float<T>::value)>
3647
+ FMT_CONSTEXPR20 auto write(OutputIt out, T value) -> OutputIt {
3648
+ if (is_constant_evaluated()) return write(out, value, format_specs<Char>());
3649
+ if (const_check(!is_supported_floating_point(value))) return out;
3650
+
3651
+ auto fspecs = float_specs();
3652
+ if (detail::signbit(value)) {
3653
+ fspecs.sign = sign::minus;
3654
+ value = -value;
3655
+ }
3656
+
3657
+ constexpr auto specs = format_specs<Char>();
3658
+ using floaty = conditional_t<std::is_same<T, long double>::value, double, T>;
3659
+ using floaty_uint = typename dragonbox::float_info<floaty>::carrier_uint;
3660
+ floaty_uint mask = exponent_mask<floaty>();
3661
+ if ((bit_cast<floaty_uint>(value) & mask) == mask)
3662
+ return write_nonfinite(out, std::isnan(value), specs, fspecs);
3663
+
3664
+ auto dec = dragonbox::to_decimal(static_cast<floaty>(value));
3665
+ return write_float(out, dec, specs, fspecs, {});
3666
+ }
3667
+
3668
+ template <typename Char, typename OutputIt, typename T,
3669
+ FMT_ENABLE_IF(is_floating_point<T>::value &&
3670
+ !is_fast_float<T>::value)>
3671
+ inline auto write(OutputIt out, T value) -> OutputIt {
3672
+ return write(out, value, format_specs<Char>());
3673
+ }
3674
+
3675
+ template <typename Char, typename OutputIt>
3676
+ auto write(OutputIt out, monostate, format_specs<Char> = {}, locale_ref = {})
3677
+ -> OutputIt {
3678
+ FMT_ASSERT(false, "");
3679
+ return out;
3680
+ }
3681
+
3682
+ template <typename Char, typename OutputIt>
3683
+ FMT_CONSTEXPR auto write(OutputIt out, basic_string_view<Char> value)
3684
+ -> OutputIt {
3685
+ auto it = reserve(out, value.size());
3686
+ it = copy_str_noinline<Char>(value.begin(), value.end(), it);
3687
+ return base_iterator(out, it);
3688
+ }
3689
+
3690
+ template <typename Char, typename OutputIt, typename T,
3691
+ FMT_ENABLE_IF(is_string<T>::value)>
3692
+ constexpr auto write(OutputIt out, const T& value) -> OutputIt {
3693
+ return write<Char>(out, to_string_view(value));
3694
+ }
3695
+
3696
+ // FMT_ENABLE_IF() condition separated to workaround an MSVC bug.
3697
+ template <
3698
+ typename Char, typename OutputIt, typename T,
3699
+ bool check =
3700
+ std::is_enum<T>::value && !std::is_same<T, Char>::value &&
3701
+ mapped_type_constant<T, basic_format_context<OutputIt, Char>>::value !=
3702
+ type::custom_type,
3703
+ FMT_ENABLE_IF(check)>
3704
+ FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt {
3705
+ return write<Char>(out, static_cast<underlying_t<T>>(value));
3706
+ }
3707
+
3708
+ template <typename Char, typename OutputIt, typename T,
3709
+ FMT_ENABLE_IF(std::is_same<T, bool>::value)>
3710
+ FMT_CONSTEXPR auto write(OutputIt out, T value,
3711
+ const format_specs<Char>& specs = {}, locale_ref = {})
3712
+ -> OutputIt {
3713
+ return specs.type != presentation_type::none &&
3714
+ specs.type != presentation_type::string
3715
+ ? write(out, value ? 1 : 0, specs, {})
3716
+ : write_bytes(out, value ? "true" : "false", specs);
3717
+ }
3718
+
3719
+ template <typename Char, typename OutputIt>
3720
+ FMT_CONSTEXPR auto write(OutputIt out, Char value) -> OutputIt {
3721
+ auto it = reserve(out, 1);
3722
+ *it++ = value;
3723
+ return base_iterator(out, it);
3724
+ }
3725
+
3726
+ template <typename Char, typename OutputIt>
3727
+ FMT_CONSTEXPR_CHAR_TRAITS auto write(OutputIt out, const Char* value)
3728
+ -> OutputIt {
3729
+ if (value) return write(out, basic_string_view<Char>(value));
3730
+ throw_format_error("string pointer is null");
3731
+ return out;
3732
+ }
3733
+
3734
+ template <typename Char, typename OutputIt, typename T,
3735
+ FMT_ENABLE_IF(std::is_same<T, void>::value)>
3736
+ auto write(OutputIt out, const T* value, const format_specs<Char>& specs = {},
3737
+ locale_ref = {}) -> OutputIt {
3738
+ return write_ptr<Char>(out, bit_cast<uintptr_t>(value), &specs);
3739
+ }
3740
+
3741
+ // A write overload that handles implicit conversions.
3742
+ template <typename Char, typename OutputIt, typename T,
3743
+ typename Context = basic_format_context<OutputIt, Char>>
3744
+ FMT_CONSTEXPR auto write(OutputIt out, const T& value) -> enable_if_t<
3745
+ std::is_class<T>::value && !is_string<T>::value &&
3746
+ !is_floating_point<T>::value && !std::is_same<T, Char>::value &&
3747
+ !std::is_same<T, remove_cvref_t<decltype(arg_mapper<Context>().map(
3748
+ value))>>::value,
3749
+ OutputIt> {
3750
+ return write<Char>(out, arg_mapper<Context>().map(value));
3751
+ }
3752
+
3753
+ template <typename Char, typename OutputIt, typename T,
3754
+ typename Context = basic_format_context<OutputIt, Char>>
3755
+ FMT_CONSTEXPR auto write(OutputIt out, const T& value)
3756
+ -> enable_if_t<mapped_type_constant<T, Context>::value == type::custom_type,
3757
+ OutputIt> {
3758
+ auto formatter = typename Context::template formatter_type<T>();
3759
+ auto parse_ctx = typename Context::parse_context_type({});
3760
+ formatter.parse(parse_ctx);
3761
+ auto ctx = Context(out, {}, {});
3762
+ return formatter.format(value, ctx);
3763
+ }
3764
+
3765
+ // An argument visitor that formats the argument and writes it via the output
3766
+ // iterator. It's a class and not a generic lambda for compatibility with C++11.
3767
+ template <typename Char> struct default_arg_formatter {
3768
+ using iterator = buffer_appender<Char>;
3769
+ using context = buffer_context<Char>;
3770
+
3771
+ iterator out;
3772
+ basic_format_args<context> args;
3773
+ locale_ref loc;
3774
+
3775
+ template <typename T> auto operator()(T value) -> iterator {
3776
+ return write<Char>(out, value);
3777
+ }
3778
+ auto operator()(typename basic_format_arg<context>::handle h) -> iterator {
3779
+ basic_format_parse_context<Char> parse_ctx({});
3780
+ context format_ctx(out, args, loc);
3781
+ h.format(parse_ctx, format_ctx);
3782
+ return format_ctx.out();
3783
+ }
3784
+ };
3785
+
3786
+ template <typename Char> struct arg_formatter {
3787
+ using iterator = buffer_appender<Char>;
3788
+ using context = buffer_context<Char>;
3789
+
3790
+ iterator out;
3791
+ const format_specs<Char>& specs;
3792
+ locale_ref locale;
3793
+
3794
+ template <typename T>
3795
+ FMT_CONSTEXPR FMT_INLINE auto operator()(T value) -> iterator {
3796
+ return detail::write(out, value, specs, locale);
3797
+ }
3798
+ auto operator()(typename basic_format_arg<context>::handle) -> iterator {
3799
+ // User-defined types are handled separately because they require access
3800
+ // to the parse context.
3801
+ return out;
3802
+ }
3803
+ };
3804
+
3805
+ struct width_checker {
3806
+ template <typename T, FMT_ENABLE_IF(is_integer<T>::value)>
3807
+ FMT_CONSTEXPR auto operator()(T value) -> unsigned long long {
3808
+ if (is_negative(value)) throw_format_error("negative width");
3809
+ return static_cast<unsigned long long>(value);
3810
+ }
3811
+
3812
+ template <typename T, FMT_ENABLE_IF(!is_integer<T>::value)>
3813
+ FMT_CONSTEXPR auto operator()(T) -> unsigned long long {
3814
+ throw_format_error("width is not integer");
3815
+ return 0;
3816
+ }
3817
+ };
3818
+
3819
+ struct precision_checker {
3820
+ template <typename T, FMT_ENABLE_IF(is_integer<T>::value)>
3821
+ FMT_CONSTEXPR auto operator()(T value) -> unsigned long long {
3822
+ if (is_negative(value)) throw_format_error("negative precision");
3823
+ return static_cast<unsigned long long>(value);
3824
+ }
3825
+
3826
+ template <typename T, FMT_ENABLE_IF(!is_integer<T>::value)>
3827
+ FMT_CONSTEXPR auto operator()(T) -> unsigned long long {
3828
+ throw_format_error("precision is not integer");
3829
+ return 0;
3830
+ }
3831
+ };
3832
+
3833
+ template <typename Handler, typename FormatArg>
3834
+ FMT_CONSTEXPR auto get_dynamic_spec(FormatArg arg) -> int {
3835
+ unsigned long long value = visit_format_arg(Handler(), arg);
3836
+ if (value > to_unsigned(max_value<int>()))
3837
+ throw_format_error("number is too big");
3838
+ return static_cast<int>(value);
3839
+ }
3840
+
3841
+ template <typename Context, typename ID>
3842
+ FMT_CONSTEXPR auto get_arg(Context& ctx, ID id) -> decltype(ctx.arg(id)) {
3843
+ auto arg = ctx.arg(id);
3844
+ if (!arg) ctx.on_error("argument not found");
3845
+ return arg;
3846
+ }
3847
+
3848
+ template <typename Handler, typename Context>
3849
+ FMT_CONSTEXPR void handle_dynamic_spec(int& value,
3850
+ arg_ref<typename Context::char_type> ref,
3851
+ Context& ctx) {
3852
+ switch (ref.kind) {
3853
+ case arg_id_kind::none:
3854
+ break;
3855
+ case arg_id_kind::index:
3856
+ value = detail::get_dynamic_spec<Handler>(get_arg(ctx, ref.val.index));
3857
+ break;
3858
+ case arg_id_kind::name:
3859
+ value = detail::get_dynamic_spec<Handler>(get_arg(ctx, ref.val.name));
3860
+ break;
3861
+ }
3862
+ }
3863
+
3864
+ #if FMT_USE_USER_DEFINED_LITERALS
3865
+ # if FMT_USE_NONTYPE_TEMPLATE_ARGS
3866
+ template <typename T, typename Char, size_t N,
3867
+ fmt::detail_exported::fixed_string<Char, N> Str>
3868
+ struct statically_named_arg : view {
3869
+ static constexpr auto name = Str.data;
3870
+
3871
+ const T& value;
3872
+ statically_named_arg(const T& v) : value(v) {}
3873
+ };
3874
+
3875
+ template <typename T, typename Char, size_t N,
3876
+ fmt::detail_exported::fixed_string<Char, N> Str>
3877
+ struct is_named_arg<statically_named_arg<T, Char, N, Str>> : std::true_type {};
3878
+
3879
+ template <typename T, typename Char, size_t N,
3880
+ fmt::detail_exported::fixed_string<Char, N> Str>
3881
+ struct is_statically_named_arg<statically_named_arg<T, Char, N, Str>>
3882
+ : std::true_type {};
3883
+
3884
+ template <typename Char, size_t N,
3885
+ fmt::detail_exported::fixed_string<Char, N> Str>
3886
+ struct udl_arg {
3887
+ template <typename T> auto operator=(T&& value) const {
3888
+ return statically_named_arg<T, Char, N, Str>(std::forward<T>(value));
3889
+ }
3890
+ };
3891
+ # else
3892
+ template <typename Char> struct udl_arg {
3893
+ const Char* str;
3894
+
3895
+ template <typename T> auto operator=(T&& value) const -> named_arg<Char, T> {
3896
+ return {str, std::forward<T>(value)};
3897
+ }
3898
+ };
3899
+ # endif
3900
+ #endif // FMT_USE_USER_DEFINED_LITERALS
3901
+
3902
+ template <typename Locale, typename Char>
3903
+ auto vformat(const Locale& loc, basic_string_view<Char> fmt,
3904
+ basic_format_args<buffer_context<type_identity_t<Char>>> args)
3905
+ -> std::basic_string<Char> {
3906
+ auto buf = basic_memory_buffer<Char>();
3907
+ detail::vformat_to(buf, fmt, args, detail::locale_ref(loc));
3908
+ return {buf.data(), buf.size()};
3909
+ }
3910
+
3911
+ using format_func = void (*)(detail::buffer<char>&, int, const char*);
3912
+
3913
+ FMT_API void format_error_code(buffer<char>& out, int error_code,
3914
+ string_view message) noexcept;
3915
+
3916
+ FMT_API void report_error(format_func func, int error_code,
3917
+ const char* message) noexcept;
3918
+ } // namespace detail
3919
+
3920
+ FMT_API auto vsystem_error(int error_code, string_view format_str,
3921
+ format_args args) -> std::system_error;
3922
+
3923
+ /**
3924
+ \rst
3925
+ Constructs :class:`std::system_error` with a message formatted with
3926
+ ``fmt::format(fmt, args...)``.
3927
+ *error_code* is a system error code as given by ``errno``.
3928
+
3929
+ **Example**::
3930
+
3931
+ // This throws std::system_error with the description
3932
+ // cannot open file 'madeup': No such file or directory
3933
+ // or similar (system message may vary).
3934
+ const char* filename = "madeup";
3935
+ std::FILE* file = std::fopen(filename, "r");
3936
+ if (!file)
3937
+ throw fmt::system_error(errno, "cannot open file '{}'", filename);
3938
+ \endrst
3939
+ */
3940
+ template <typename... T>
3941
+ auto system_error(int error_code, format_string<T...> fmt, T&&... args)
3942
+ -> std::system_error {
3943
+ return vsystem_error(error_code, fmt, fmt::make_format_args(args...));
3944
+ }
3945
+
3946
+ /**
3947
+ \rst
3948
+ Formats an error message for an error returned by an operating system or a
3949
+ language runtime, for example a file opening error, and writes it to *out*.
3950
+ The format is the same as the one used by ``std::system_error(ec, message)``
3951
+ where ``ec`` is ``std::error_code(error_code, std::generic_category()})``.
3952
+ It is implementation-defined but normally looks like:
3953
+
3954
+ .. parsed-literal::
3955
+ *<message>*: *<system-message>*
3956
+
3957
+ where *<message>* is the passed message and *<system-message>* is the system
3958
+ message corresponding to the error code.
3959
+ *error_code* is a system error code as given by ``errno``.
3960
+ \endrst
3961
+ */
3962
+ FMT_API void format_system_error(detail::buffer<char>& out, int error_code,
3963
+ const char* message) noexcept;
3964
+
3965
+ // Reports a system error without throwing an exception.
3966
+ // Can be used to report errors from destructors.
3967
+ FMT_API void report_system_error(int error_code, const char* message) noexcept;
3968
+
3969
+ /** Fast integer formatter. */
3970
+ class format_int {
3971
+ private:
3972
+ // Buffer should be large enough to hold all digits (digits10 + 1),
3973
+ // a sign and a null character.
3974
+ enum { buffer_size = std::numeric_limits<unsigned long long>::digits10 + 3 };
3975
+ mutable char buffer_[buffer_size];
3976
+ char* str_;
3977
+
3978
+ template <typename UInt> auto format_unsigned(UInt value) -> char* {
3979
+ auto n = static_cast<detail::uint32_or_64_or_128_t<UInt>>(value);
3980
+ return detail::format_decimal(buffer_, n, buffer_size - 1).begin;
3981
+ }
3982
+
3983
+ template <typename Int> auto format_signed(Int value) -> char* {
3984
+ auto abs_value = static_cast<detail::uint32_or_64_or_128_t<Int>>(value);
3985
+ bool negative = value < 0;
3986
+ if (negative) abs_value = 0 - abs_value;
3987
+ auto begin = format_unsigned(abs_value);
3988
+ if (negative) *--begin = '-';
3989
+ return begin;
3990
+ }
3991
+
3992
+ public:
3993
+ explicit format_int(int value) : str_(format_signed(value)) {}
3994
+ explicit format_int(long value) : str_(format_signed(value)) {}
3995
+ explicit format_int(long long value) : str_(format_signed(value)) {}
3996
+ explicit format_int(unsigned value) : str_(format_unsigned(value)) {}
3997
+ explicit format_int(unsigned long value) : str_(format_unsigned(value)) {}
3998
+ explicit format_int(unsigned long long value)
3999
+ : str_(format_unsigned(value)) {}
4000
+
4001
+ /** Returns the number of characters written to the output buffer. */
4002
+ auto size() const -> size_t {
4003
+ return detail::to_unsigned(buffer_ - str_ + buffer_size - 1);
4004
+ }
4005
+
4006
+ /**
4007
+ Returns a pointer to the output buffer content. No terminating null
4008
+ character is appended.
4009
+ */
4010
+ auto data() const -> const char* { return str_; }
4011
+
4012
+ /**
4013
+ Returns a pointer to the output buffer content with terminating null
4014
+ character appended.
4015
+ */
4016
+ auto c_str() const -> const char* {
4017
+ buffer_[buffer_size - 1] = '\0';
4018
+ return str_;
4019
+ }
4020
+
4021
+ /**
4022
+ \rst
4023
+ Returns the content of the output buffer as an ``std::string``.
4024
+ \endrst
4025
+ */
4026
+ auto str() const -> std::string { return std::string(str_, size()); }
4027
+ };
4028
+
4029
+ template <typename T, typename Char>
4030
+ struct formatter<T, Char, enable_if_t<detail::has_format_as<T>::value>>
4031
+ : formatter<detail::format_as_t<T>, Char> {
4032
+ template <typename FormatContext>
4033
+ auto format(const T& value, FormatContext& ctx) const -> decltype(ctx.out()) {
4034
+ using base = formatter<detail::format_as_t<T>, Char>;
4035
+ return base::format(format_as(value), ctx);
4036
+ }
4037
+ };
4038
+
4039
+ #define FMT_FORMAT_AS(Type, Base) \
4040
+ template <typename Char> \
4041
+ struct formatter<Type, Char> : formatter<Base, Char> {}
4042
+
4043
+ FMT_FORMAT_AS(signed char, int);
4044
+ FMT_FORMAT_AS(unsigned char, unsigned);
4045
+ FMT_FORMAT_AS(short, int);
4046
+ FMT_FORMAT_AS(unsigned short, unsigned);
4047
+ FMT_FORMAT_AS(long, detail::long_type);
4048
+ FMT_FORMAT_AS(unsigned long, detail::ulong_type);
4049
+ FMT_FORMAT_AS(Char*, const Char*);
4050
+ FMT_FORMAT_AS(std::basic_string<Char>, basic_string_view<Char>);
4051
+ FMT_FORMAT_AS(std::nullptr_t, const void*);
4052
+ FMT_FORMAT_AS(detail::std_string_view<Char>, basic_string_view<Char>);
4053
+ FMT_FORMAT_AS(void*, const void*);
4054
+
4055
+ template <typename Char, size_t N>
4056
+ struct formatter<Char[N], Char> : formatter<basic_string_view<Char>, Char> {};
4057
+
4058
+ /**
4059
+ \rst
4060
+ Converts ``p`` to ``const void*`` for pointer formatting.
4061
+
4062
+ **Example**::
4063
+
4064
+ auto s = fmt::format("{}", fmt::ptr(p));
4065
+ \endrst
4066
+ */
4067
+ template <typename T> auto ptr(T p) -> const void* {
4068
+ static_assert(std::is_pointer<T>::value, "");
4069
+ return detail::bit_cast<const void*>(p);
4070
+ }
4071
+ template <typename T, typename Deleter>
4072
+ auto ptr(const std::unique_ptr<T, Deleter>& p) -> const void* {
4073
+ return p.get();
4074
+ }
4075
+ template <typename T> auto ptr(const std::shared_ptr<T>& p) -> const void* {
4076
+ return p.get();
4077
+ }
4078
+
4079
+ /**
4080
+ \rst
4081
+ Converts ``e`` to the underlying type.
4082
+
4083
+ **Example**::
4084
+
4085
+ enum class color { red, green, blue };
4086
+ auto s = fmt::format("{}", fmt::underlying(color::red));
4087
+ \endrst
4088
+ */
4089
+ template <typename Enum>
4090
+ constexpr auto underlying(Enum e) noexcept -> underlying_t<Enum> {
4091
+ return static_cast<underlying_t<Enum>>(e);
4092
+ }
4093
+
4094
+ namespace enums {
4095
+ template <typename Enum, FMT_ENABLE_IF(std::is_enum<Enum>::value)>
4096
+ constexpr auto format_as(Enum e) noexcept -> underlying_t<Enum> {
4097
+ return static_cast<underlying_t<Enum>>(e);
4098
+ }
4099
+ } // namespace enums
4100
+
4101
+ class bytes {
4102
+ private:
4103
+ string_view data_;
4104
+ friend struct formatter<bytes>;
4105
+
4106
+ public:
4107
+ explicit bytes(string_view data) : data_(data) {}
4108
+ };
4109
+
4110
+ template <> struct formatter<bytes> {
4111
+ private:
4112
+ detail::dynamic_format_specs<> specs_;
4113
+
4114
+ public:
4115
+ template <typename ParseContext>
4116
+ FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const char* {
4117
+ return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx,
4118
+ detail::type::string_type);
4119
+ }
4120
+
4121
+ template <typename FormatContext>
4122
+ auto format(bytes b, FormatContext& ctx) -> decltype(ctx.out()) {
4123
+ detail::handle_dynamic_spec<detail::width_checker>(specs_.width,
4124
+ specs_.width_ref, ctx);
4125
+ detail::handle_dynamic_spec<detail::precision_checker>(
4126
+ specs_.precision, specs_.precision_ref, ctx);
4127
+ return detail::write_bytes(ctx.out(), b.data_, specs_);
4128
+ }
4129
+ };
4130
+
4131
+ // group_digits_view is not derived from view because it copies the argument.
4132
+ template <typename T> struct group_digits_view {
4133
+ T value;
4134
+ };
4135
+
4136
+ /**
4137
+ \rst
4138
+ Returns a view that formats an integer value using ',' as a locale-independent
4139
+ thousands separator.
4140
+
4141
+ **Example**::
4142
+
4143
+ fmt::print("{}", fmt::group_digits(12345));
4144
+ // Output: "12,345"
4145
+ \endrst
4146
+ */
4147
+ template <typename T> auto group_digits(T value) -> group_digits_view<T> {
4148
+ return {value};
4149
+ }
4150
+
4151
+ template <typename T> struct formatter<group_digits_view<T>> : formatter<T> {
4152
+ private:
4153
+ detail::dynamic_format_specs<> specs_;
4154
+
4155
+ public:
4156
+ template <typename ParseContext>
4157
+ FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const char* {
4158
+ return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx,
4159
+ detail::type::int_type);
4160
+ }
4161
+
4162
+ template <typename FormatContext>
4163
+ auto format(group_digits_view<T> t, FormatContext& ctx)
4164
+ -> decltype(ctx.out()) {
4165
+ detail::handle_dynamic_spec<detail::width_checker>(specs_.width,
4166
+ specs_.width_ref, ctx);
4167
+ detail::handle_dynamic_spec<detail::precision_checker>(
4168
+ specs_.precision, specs_.precision_ref, ctx);
4169
+ return detail::write_int(
4170
+ ctx.out(), static_cast<detail::uint64_or_128_t<T>>(t.value), 0, specs_,
4171
+ detail::digit_grouping<char>("\3", ","));
4172
+ }
4173
+ };
4174
+
4175
+ template <typename T> struct nested_view {
4176
+ const formatter<T>* fmt;
4177
+ const T* value;
4178
+ };
4179
+
4180
+ template <typename T> struct formatter<nested_view<T>> {
4181
+ FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> const char* {
4182
+ return ctx.begin();
4183
+ }
4184
+ auto format(nested_view<T> view, format_context& ctx) const
4185
+ -> decltype(ctx.out()) {
4186
+ return view.fmt->format(*view.value, ctx);
4187
+ }
4188
+ };
4189
+
4190
+ template <typename T> struct nested_formatter {
4191
+ private:
4192
+ int width_;
4193
+ detail::fill_t<char> fill_;
4194
+ align_t align_ : 4;
4195
+ formatter<T> formatter_;
4196
+
4197
+ public:
4198
+ constexpr nested_formatter() : width_(0), align_(align_t::none) {}
4199
+
4200
+ FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> const char* {
4201
+ auto specs = detail::dynamic_format_specs<char>();
4202
+ auto it = parse_format_specs(ctx.begin(), ctx.end(), specs, ctx,
4203
+ detail::type::none_type);
4204
+ width_ = specs.width;
4205
+ fill_ = specs.fill;
4206
+ align_ = specs.align;
4207
+ ctx.advance_to(it);
4208
+ return formatter_.parse(ctx);
4209
+ }
4210
+
4211
+ template <typename F>
4212
+ auto write_padded(format_context& ctx, F write) const -> decltype(ctx.out()) {
4213
+ if (width_ == 0) return write(ctx.out());
4214
+ auto buf = memory_buffer();
4215
+ write(std::back_inserter(buf));
4216
+ auto specs = format_specs<>();
4217
+ specs.width = width_;
4218
+ specs.fill = fill_;
4219
+ specs.align = align_;
4220
+ return detail::write(ctx.out(), string_view(buf.data(), buf.size()), specs);
4221
+ }
4222
+
4223
+ auto nested(const T& value) const -> nested_view<T> {
4224
+ return nested_view<T>{&formatter_, &value};
4225
+ }
4226
+ };
4227
+
4228
+ // DEPRECATED! join_view will be moved to ranges.h.
4229
+ template <typename It, typename Sentinel, typename Char = char>
4230
+ struct join_view : detail::view {
4231
+ It begin;
4232
+ Sentinel end;
4233
+ basic_string_view<Char> sep;
4234
+
4235
+ join_view(It b, Sentinel e, basic_string_view<Char> s)
4236
+ : begin(b), end(e), sep(s) {}
4237
+ };
4238
+
4239
+ template <typename It, typename Sentinel, typename Char>
4240
+ struct formatter<join_view<It, Sentinel, Char>, Char> {
4241
+ private:
4242
+ using value_type =
4243
+ #ifdef __cpp_lib_ranges
4244
+ std::iter_value_t<It>;
4245
+ #else
4246
+ typename std::iterator_traits<It>::value_type;
4247
+ #endif
4248
+ formatter<remove_cvref_t<value_type>, Char> value_formatter_;
4249
+
4250
+ public:
4251
+ template <typename ParseContext>
4252
+ FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const Char* {
4253
+ return value_formatter_.parse(ctx);
4254
+ }
4255
+
4256
+ template <typename FormatContext>
4257
+ auto format(const join_view<It, Sentinel, Char>& value,
4258
+ FormatContext& ctx) const -> decltype(ctx.out()) {
4259
+ auto it = value.begin;
4260
+ auto out = ctx.out();
4261
+ if (it != value.end) {
4262
+ out = value_formatter_.format(*it, ctx);
4263
+ ++it;
4264
+ while (it != value.end) {
4265
+ out = detail::copy_str<Char>(value.sep.begin(), value.sep.end(), out);
4266
+ ctx.advance_to(out);
4267
+ out = value_formatter_.format(*it, ctx);
4268
+ ++it;
4269
+ }
4270
+ }
4271
+ return out;
4272
+ }
4273
+ };
4274
+
4275
+ /**
4276
+ Returns a view that formats the iterator range `[begin, end)` with elements
4277
+ separated by `sep`.
4278
+ */
4279
+ template <typename It, typename Sentinel>
4280
+ auto join(It begin, Sentinel end, string_view sep) -> join_view<It, Sentinel> {
4281
+ return {begin, end, sep};
4282
+ }
4283
+
4284
+ /**
4285
+ \rst
4286
+ Returns a view that formats `range` with elements separated by `sep`.
4287
+
4288
+ **Example**::
4289
+
4290
+ std::vector<int> v = {1, 2, 3};
4291
+ fmt::print("{}", fmt::join(v, ", "));
4292
+ // Output: "1, 2, 3"
4293
+
4294
+ ``fmt::join`` applies passed format specifiers to the range elements::
4295
+
4296
+ fmt::print("{:02}", fmt::join(v, ", "));
4297
+ // Output: "01, 02, 03"
4298
+ \endrst
4299
+ */
4300
+ template <typename Range>
4301
+ auto join(Range&& range, string_view sep)
4302
+ -> join_view<detail::iterator_t<Range>, detail::sentinel_t<Range>> {
4303
+ return join(std::begin(range), std::end(range), sep);
4304
+ }
4305
+
4306
+ /**
4307
+ \rst
4308
+ Converts *value* to ``std::string`` using the default format for type *T*.
4309
+
4310
+ **Example**::
4311
+
4312
+ #include <fmt/format.h>
4313
+
4314
+ std::string answer = fmt::to_string(42);
4315
+ \endrst
4316
+ */
4317
+ template <typename T, FMT_ENABLE_IF(!std::is_integral<T>::value &&
4318
+ !detail::has_format_as<T>::value)>
4319
+ inline auto to_string(const T& value) -> std::string {
4320
+ auto buffer = memory_buffer();
4321
+ detail::write<char>(appender(buffer), value);
4322
+ return {buffer.data(), buffer.size()};
4323
+ }
4324
+
4325
+ template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
4326
+ FMT_NODISCARD inline auto to_string(T value) -> std::string {
4327
+ // The buffer should be large enough to store the number including the sign
4328
+ // or "false" for bool.
4329
+ constexpr int max_size = detail::digits10<T>() + 2;
4330
+ char buffer[max_size > 5 ? static_cast<unsigned>(max_size) : 5];
4331
+ char* begin = buffer;
4332
+ return std::string(begin, detail::write<char>(begin, value));
4333
+ }
4334
+
4335
+ template <typename Char, size_t SIZE>
4336
+ FMT_NODISCARD auto to_string(const basic_memory_buffer<Char, SIZE>& buf)
4337
+ -> std::basic_string<Char> {
4338
+ auto size = buf.size();
4339
+ detail::assume(size < std::basic_string<Char>().max_size());
4340
+ return std::basic_string<Char>(buf.data(), size);
4341
+ }
4342
+
4343
+ template <typename T, FMT_ENABLE_IF(!std::is_integral<T>::value &&
4344
+ detail::has_format_as<T>::value)>
4345
+ inline auto to_string(const T& value) -> std::string {
4346
+ return to_string(format_as(value));
4347
+ }
4348
+
4349
+ FMT_END_EXPORT
4350
+
4351
+ namespace detail {
4352
+
4353
+ template <typename Char>
4354
+ void vformat_to(buffer<Char>& buf, basic_string_view<Char> fmt,
4355
+ typename vformat_args<Char>::type args, locale_ref loc) {
4356
+ auto out = buffer_appender<Char>(buf);
4357
+ if (fmt.size() == 2 && equal2(fmt.data(), "{}")) {
4358
+ auto arg = args.get(0);
4359
+ if (!arg) throw_format_error("argument not found");
4360
+ visit_format_arg(default_arg_formatter<Char>{out, args, loc}, arg);
4361
+ return;
4362
+ }
4363
+
4364
+ struct format_handler : error_handler {
4365
+ basic_format_parse_context<Char> parse_context;
4366
+ buffer_context<Char> context;
4367
+
4368
+ format_handler(buffer_appender<Char> p_out, basic_string_view<Char> str,
4369
+ basic_format_args<buffer_context<Char>> p_args,
4370
+ locale_ref p_loc)
4371
+ : parse_context(str), context(p_out, p_args, p_loc) {}
4372
+
4373
+ void on_text(const Char* begin, const Char* end) {
4374
+ auto text = basic_string_view<Char>(begin, to_unsigned(end - begin));
4375
+ context.advance_to(write<Char>(context.out(), text));
4376
+ }
4377
+
4378
+ FMT_CONSTEXPR auto on_arg_id() -> int {
4379
+ return parse_context.next_arg_id();
4380
+ }
4381
+ FMT_CONSTEXPR auto on_arg_id(int id) -> int {
4382
+ return parse_context.check_arg_id(id), id;
4383
+ }
4384
+ FMT_CONSTEXPR auto on_arg_id(basic_string_view<Char> id) -> int {
4385
+ int arg_id = context.arg_id(id);
4386
+ if (arg_id < 0) throw_format_error("argument not found");
4387
+ return arg_id;
4388
+ }
4389
+
4390
+ FMT_INLINE void on_replacement_field(int id, const Char*) {
4391
+ auto arg = get_arg(context, id);
4392
+ context.advance_to(visit_format_arg(
4393
+ default_arg_formatter<Char>{context.out(), context.args(),
4394
+ context.locale()},
4395
+ arg));
4396
+ }
4397
+
4398
+ auto on_format_specs(int id, const Char* begin, const Char* end)
4399
+ -> const Char* {
4400
+ auto arg = get_arg(context, id);
4401
+ // Not using a visitor for custom types gives better codegen.
4402
+ if (arg.format_custom(begin, parse_context, context))
4403
+ return parse_context.begin();
4404
+ auto specs = detail::dynamic_format_specs<Char>();
4405
+ begin = parse_format_specs(begin, end, specs, parse_context, arg.type());
4406
+ detail::handle_dynamic_spec<detail::width_checker>(
4407
+ specs.width, specs.width_ref, context);
4408
+ detail::handle_dynamic_spec<detail::precision_checker>(
4409
+ specs.precision, specs.precision_ref, context);
4410
+ if (begin == end || *begin != '}')
4411
+ throw_format_error("missing '}' in format string");
4412
+ auto f = arg_formatter<Char>{context.out(), specs, context.locale()};
4413
+ context.advance_to(visit_format_arg(f, arg));
4414
+ return begin;
4415
+ }
4416
+ };
4417
+ detail::parse_format_string<false>(fmt, format_handler(out, fmt, args, loc));
4418
+ }
4419
+
4420
+ FMT_BEGIN_EXPORT
4421
+
4422
+ #ifndef FMT_HEADER_ONLY
4423
+ extern template FMT_API void vformat_to(buffer<char>&, string_view,
4424
+ typename vformat_args<>::type,
4425
+ locale_ref);
4426
+ extern template FMT_API auto thousands_sep_impl<char>(locale_ref)
4427
+ -> thousands_sep_result<char>;
4428
+ extern template FMT_API auto thousands_sep_impl<wchar_t>(locale_ref)
4429
+ -> thousands_sep_result<wchar_t>;
4430
+ extern template FMT_API auto decimal_point_impl(locale_ref) -> char;
4431
+ extern template FMT_API auto decimal_point_impl(locale_ref) -> wchar_t;
4432
+ #endif // FMT_HEADER_ONLY
4433
+
4434
+ } // namespace detail
4435
+
4436
+ #if FMT_USE_USER_DEFINED_LITERALS
4437
+ inline namespace literals {
4438
+ /**
4439
+ \rst
4440
+ User-defined literal equivalent of :func:`fmt::arg`.
4441
+
4442
+ **Example**::
4443
+
4444
+ using namespace fmt::literals;
4445
+ fmt::print("Elapsed time: {s:.2f} seconds", "s"_a=1.23);
4446
+ \endrst
4447
+ */
4448
+ # if FMT_USE_NONTYPE_TEMPLATE_ARGS
4449
+ template <detail_exported::fixed_string Str> constexpr auto operator""_a() {
4450
+ using char_t = remove_cvref_t<decltype(Str.data[0])>;
4451
+ return detail::udl_arg<char_t, sizeof(Str.data) / sizeof(char_t), Str>();
4452
+ }
4453
+ # else
4454
+ constexpr auto operator""_a(const char* s, size_t) -> detail::udl_arg<char> {
4455
+ return {s};
4456
+ }
4457
+ # endif
4458
+ } // namespace literals
4459
+ #endif // FMT_USE_USER_DEFINED_LITERALS
4460
+
4461
+ template <typename Locale, FMT_ENABLE_IF(detail::is_locale<Locale>::value)>
4462
+ inline auto vformat(const Locale& loc, string_view fmt, format_args args)
4463
+ -> std::string {
4464
+ return detail::vformat(loc, fmt, args);
4465
+ }
4466
+
4467
+ template <typename Locale, typename... T,
4468
+ FMT_ENABLE_IF(detail::is_locale<Locale>::value)>
4469
+ inline auto format(const Locale& loc, format_string<T...> fmt, T&&... args)
4470
+ -> std::string {
4471
+ return fmt::vformat(loc, string_view(fmt), fmt::make_format_args(args...));
4472
+ }
4473
+
4474
+ template <typename OutputIt, typename Locale,
4475
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value&&
4476
+ detail::is_locale<Locale>::value)>
4477
+ auto vformat_to(OutputIt out, const Locale& loc, string_view fmt,
4478
+ format_args args) -> OutputIt {
4479
+ using detail::get_buffer;
4480
+ auto&& buf = get_buffer<char>(out);
4481
+ detail::vformat_to(buf, fmt, args, detail::locale_ref(loc));
4482
+ return detail::get_iterator(buf, out);
4483
+ }
4484
+
4485
+ template <typename OutputIt, typename Locale, typename... T,
4486
+ FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value&&
4487
+ detail::is_locale<Locale>::value)>
4488
+ FMT_INLINE auto format_to(OutputIt out, const Locale& loc,
4489
+ format_string<T...> fmt, T&&... args) -> OutputIt {
4490
+ return vformat_to(out, loc, fmt, fmt::make_format_args(args...));
4491
+ }
4492
+
4493
+ template <typename Locale, typename... T,
4494
+ FMT_ENABLE_IF(detail::is_locale<Locale>::value)>
4495
+ FMT_NODISCARD FMT_INLINE auto formatted_size(const Locale& loc,
4496
+ format_string<T...> fmt,
4497
+ T&&... args) -> size_t {
4498
+ auto buf = detail::counting_buffer<>();
4499
+ detail::vformat_to<char>(buf, fmt, fmt::make_format_args(args...),
4500
+ detail::locale_ref(loc));
4501
+ return buf.count();
4502
+ }
4503
+
4504
+ FMT_END_EXPORT
4505
+
4506
+ template <typename T, typename Char>
4507
+ template <typename FormatContext>
4508
+ FMT_CONSTEXPR FMT_INLINE auto
4509
+ formatter<T, Char,
4510
+ enable_if_t<detail::type_constant<T, Char>::value !=
4511
+ detail::type::custom_type>>::format(const T& val,
4512
+ FormatContext& ctx)
4513
+ const -> decltype(ctx.out()) {
4514
+ if (specs_.width_ref.kind == detail::arg_id_kind::none &&
4515
+ specs_.precision_ref.kind == detail::arg_id_kind::none) {
4516
+ return detail::write<Char>(ctx.out(), val, specs_, ctx.locale());
4517
+ }
4518
+ auto specs = specs_;
4519
+ detail::handle_dynamic_spec<detail::width_checker>(specs.width,
4520
+ specs.width_ref, ctx);
4521
+ detail::handle_dynamic_spec<detail::precision_checker>(
4522
+ specs.precision, specs.precision_ref, ctx);
4523
+ return detail::write<Char>(ctx.out(), val, specs, ctx.locale());
4524
+ }
4525
+
4526
+ FMT_END_NAMESPACE
4527
+
4528
+ #ifdef FMT_HEADER_ONLY
4529
+ # define FMT_FUNC inline
4530
+ # include "format-inl.h"
4531
+ #else
4532
+ # define FMT_FUNC
4533
+ #endif
4534
+
4535
+ #endif // FMT_FORMAT_H_