grpc 1.57.0 → 1.58.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (402) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +534 -284
  3. data/include/grpc/event_engine/event_engine.h +0 -1
  4. data/include/grpc/event_engine/memory_allocator.h +2 -2
  5. data/include/grpc/impl/channel_arg_names.h +371 -0
  6. data/include/grpc/impl/grpc_types.h +1 -353
  7. data/include/grpc/module.modulemap +1 -0
  8. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
  9. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
  10. data/src/core/ext/filters/client_channel/client_channel.cc +7 -3
  11. data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
  12. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +10 -5
  13. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -0
  15. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +5 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +4 -2
  17. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +115 -109
  18. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +0 -5
  19. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +7 -2
  20. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -1
  21. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -0
  22. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
  23. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -3
  24. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +6 -1
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +8 -5
  26. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -1
  27. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
  28. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +9 -4
  29. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
  30. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
  31. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +41 -14
  32. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -1
  33. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -2
  34. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +1 -1
  35. data/src/core/ext/filters/client_channel/retry_filter.h +1 -0
  36. data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
  37. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
  38. data/src/core/ext/filters/client_channel/subchannel.cc +9 -5
  39. data/src/core/ext/filters/client_channel/subchannel.h +8 -2
  40. data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
  41. data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
  42. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  43. data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -0
  44. data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
  45. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
  46. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -7
  47. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
  48. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -12
  49. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +357 -358
  50. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -18
  51. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +63 -4
  52. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -2
  53. data/src/core/ext/transport/chttp2/transport/internal.h +30 -57
  54. data/src/core/ext/transport/chttp2/transport/parsing.cc +16 -7
  55. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
  56. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
  57. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
  58. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
  59. data/src/core/ext/transport/chttp2/transport/writing.cc +81 -89
  60. data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
  61. data/src/core/ext/xds/xds_client_grpc.cc +1 -0
  62. data/src/core/ext/xds/xds_http_fault_filter.cc +1 -2
  63. data/src/core/ext/xds/xds_http_fault_filter.h +1 -2
  64. data/src/core/ext/xds/xds_http_filters.h +2 -4
  65. data/src/core/ext/xds/xds_http_rbac_filter.cc +3 -8
  66. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -2
  67. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +1 -2
  68. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -2
  69. data/src/core/ext/xds/xds_lb_policy_registry.cc +3 -6
  70. data/src/core/ext/xds/xds_routing.cc +2 -2
  71. data/src/core/ext/xds/xds_transport_grpc.cc +1 -0
  72. data/src/core/lib/avl/avl.h +10 -173
  73. data/src/core/lib/channel/call_tracer.cc +289 -0
  74. data/src/core/lib/channel/call_tracer.h +35 -0
  75. data/src/core/lib/channel/channel_args.cc +84 -79
  76. data/src/core/lib/channel/channel_args.h +29 -17
  77. data/src/core/lib/channel/connected_channel.cc +0 -1
  78. data/src/core/lib/channel/promise_based_filter.cc +4 -1
  79. data/src/core/lib/compression/compression_internal.cc +8 -4
  80. data/src/core/lib/debug/stats_data.cc +93 -21
  81. data/src/core/lib/debug/stats_data.h +41 -0
  82. data/src/core/lib/event_engine/ares_resolver.cc +712 -0
  83. data/src/core/lib/event_engine/ares_resolver.h +150 -0
  84. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +9 -3
  85. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +2 -2
  86. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
  87. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
  88. data/src/core/lib/event_engine/forkable.cc +15 -1
  89. data/src/core/lib/event_engine/forkable.h +15 -0
  90. data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
  91. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +25 -3
  92. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
  93. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
  94. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +3 -3
  95. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +47 -1
  96. data/src/core/lib/event_engine/posix_engine/posix_engine.h +12 -1
  97. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +1 -0
  98. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
  99. data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
  100. data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
  101. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +7 -0
  102. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +86 -111
  103. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +15 -61
  104. data/src/core/lib/event_engine/windows/windows_endpoint.cc +3 -4
  105. data/src/core/lib/experiments/config.cc +14 -0
  106. data/src/core/lib/experiments/experiments.cc +141 -304
  107. data/src/core/lib/experiments/experiments.h +16 -17
  108. data/src/core/lib/gprpp/ref_counted.h +3 -1
  109. data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
  110. data/src/core/lib/gprpp/ref_counted_string.h +146 -0
  111. data/src/core/lib/gprpp/time.h +2 -2
  112. data/src/core/lib/gprpp/work_serializer.cc +36 -0
  113. data/src/core/lib/gprpp/work_serializer.h +5 -0
  114. data/src/core/lib/http/httpcli_security_connector.cc +1 -0
  115. data/src/core/lib/iomgr/buffer_list.cc +2 -0
  116. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +7 -22
  117. data/src/core/lib/iomgr/tcp_posix.cc +3 -3
  118. data/src/core/lib/promise/detail/basic_seq.h +1 -372
  119. data/src/core/lib/promise/detail/seq_state.h +2076 -0
  120. data/src/core/lib/promise/seq.h +19 -2
  121. data/src/core/lib/promise/sleep.h +5 -10
  122. data/src/core/lib/promise/try_seq.h +34 -2
  123. data/src/core/lib/resource_quota/api.cc +1 -0
  124. data/src/core/lib/resource_quota/arena.cc +2 -0
  125. data/src/core/lib/resource_quota/arena.h +42 -8
  126. data/src/core/lib/resource_quota/memory_quota.cc +0 -1
  127. data/src/core/lib/resource_quota/resource_quota.h +1 -0
  128. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  129. data/src/core/lib/security/authorization/rbac_policy.h +1 -1
  130. data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
  131. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -0
  132. data/src/core/lib/security/credentials/jwt/json_token.cc +17 -0
  133. data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
  134. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +42 -0
  135. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
  136. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
  137. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -0
  138. data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
  139. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -0
  140. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
  141. data/src/core/lib/security/security_connector/ssl_utils.cc +1 -0
  142. data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
  143. data/src/core/lib/security/transport/security_handshaker.cc +1 -0
  144. data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
  145. data/src/core/lib/surface/call.cc +32 -8
  146. data/src/core/lib/surface/channel.cc +1 -0
  147. data/src/core/lib/surface/completion_queue.cc +10 -0
  148. data/src/core/lib/surface/init.cc +1 -0
  149. data/src/core/lib/surface/server.cc +67 -64
  150. data/src/core/lib/surface/server.h +1 -15
  151. data/src/core/lib/surface/version.cc +2 -2
  152. data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
  153. data/src/core/tsi/ssl_transport_security.cc +11 -0
  154. data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
  155. data/src/ruby/lib/grpc/version.rb +1 -1
  156. data/src/ruby/pb/test/client.rb +16 -0
  157. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  158. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
  159. data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
  160. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  161. data/third_party/abseil-cpp/absl/base/casts.h +8 -8
  162. data/third_party/abseil-cpp/absl/base/config.h +89 -106
  163. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
  164. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
  165. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
  166. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
  167. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
  168. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
  169. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
  170. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
  171. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
  172. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
  173. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
  174. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
  175. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  176. data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
  177. data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
  178. data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
  179. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
  180. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
  181. data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
  182. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
  183. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
  184. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
  185. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
  186. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
  187. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
  188. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
  189. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
  190. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
  191. data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
  192. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
  193. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
  194. data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
  195. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
  196. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
  197. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
  198. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
  199. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
  200. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
  201. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
  202. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
  203. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
  204. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
  205. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
  206. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
  207. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
  208. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
  209. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
  210. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
  211. data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
  212. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
  213. data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
  214. data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
  215. data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
  216. data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
  217. data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
  218. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
  219. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
  220. data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
  221. data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
  222. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
  223. data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
  224. data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
  225. data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
  226. data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
  227. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
  228. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
  229. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
  230. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
  231. data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
  232. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
  233. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
  234. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
  235. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
  236. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
  237. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
  238. data/third_party/abseil-cpp/absl/status/status.cc +11 -7
  239. data/third_party/abseil-cpp/absl/status/status.h +11 -2
  240. data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
  241. data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
  242. data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
  243. data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
  244. data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
  245. data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
  246. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
  247. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
  248. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
  249. data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
  250. data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
  251. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
  252. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
  253. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
  254. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
  255. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
  256. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
  257. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
  258. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
  259. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
  260. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
  261. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
  262. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
  263. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
  264. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
  265. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
  266. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
  267. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
  268. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
  269. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
  270. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
  271. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
  272. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
  273. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
  274. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
  275. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
  276. data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
  277. data/third_party/abseil-cpp/absl/strings/match.h +19 -0
  278. data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
  279. data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
  280. data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
  281. data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
  282. data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
  283. data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
  284. data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
  285. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
  286. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
  287. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
  288. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  289. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
  290. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
  291. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
  292. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
  293. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
  294. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
  295. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  296. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
  297. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  298. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  299. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  300. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
  301. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
  302. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  303. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
  304. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
  305. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
  306. data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
  307. data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
  308. data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
  309. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
  310. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  311. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
  312. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
  313. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
  314. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
  315. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
  316. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
  317. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
  318. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
  319. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
  320. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
  321. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
  322. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
  323. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
  324. data/third_party/abseil-cpp/absl/time/time.cc +9 -2
  325. data/third_party/abseil-cpp/absl/time/time.h +115 -15
  326. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
  327. data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
  328. data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
  329. data/third_party/abseil-cpp/absl/types/optional.h +15 -13
  330. data/third_party/abseil-cpp/absl/types/span.h +1 -2
  331. data/third_party/boringssl-with-bazel/err_data.c +15 -14
  332. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
  333. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
  334. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +7 -3
  335. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +5 -5
  336. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
  337. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -48
  338. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +11 -6
  339. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
  340. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
  341. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +9 -0
  342. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
  343. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +3 -7
  344. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -2
  345. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
  346. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
  347. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -1
  348. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
  349. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
  350. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
  351. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
  352. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
  353. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
  354. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +9 -14
  355. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +4 -6
  356. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +10 -11
  357. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
  358. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +38 -19
  359. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +7 -0
  360. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +39 -16
  361. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
  362. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +7 -0
  363. data/third_party/boringssl-with-bazel/src/crypto/internal.h +13 -21
  364. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +6 -23
  365. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +4 -0
  366. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +5 -0
  367. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -6
  368. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
  369. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
  370. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
  371. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +9 -1
  372. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -1
  373. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
  374. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +7 -9
  375. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +6 -2
  376. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -20
  377. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +4 -0
  378. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +20 -12
  379. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +50 -3
  380. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -4
  381. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
  382. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
  383. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +2 -0
  384. metadata +41 -33
  385. data/src/core/lib/promise/detail/basic_join.h +0 -197
  386. data/src/core/lib/promise/detail/switch.h +0 -1455
  387. data/src/core/lib/promise/try_join.h +0 -82
  388. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
  389. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +0 -62
  390. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm.c +0 -38
  391. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_openbsd.c +0 -31
  392. data/third_party/re2/util/benchmark.h +0 -156
  393. data/third_party/re2/util/flags.h +0 -26
  394. data/third_party/re2/util/malloc_counter.h +0 -19
  395. data/third_party/re2/util/pcre.cc +0 -1025
  396. data/third_party/re2/util/pcre.h +0 -681
  397. data/third_party/re2/util/test.h +0 -50
  398. data/third_party/upb/upb/mini_table.h +0 -36
  399. data/third_party/zlib/gzclose.c +0 -25
  400. data/third_party/zlib/gzlib.c +0 -639
  401. data/third_party/zlib/gzread.c +0 -650
  402. data/third_party/zlib/gzwrite.c +0 -677
@@ -45,6 +45,7 @@
45
45
  #include <sstream>
46
46
  #include <string>
47
47
  #include <utility>
48
+ #include <vector>
48
49
 
49
50
  #include "absl/base/config.h"
50
51
  #include "absl/time/internal/cctz/include/cctz/civil_time.h"
@@ -134,6 +135,49 @@ std::int_fast64_t Decode64(const char* cp) {
134
135
  return static_cast<std::int_fast64_t>(v - s64maxU - 1) - s64max - 1;
135
136
  }
136
137
 
138
+ struct Header { // counts of:
139
+ std::size_t timecnt; // transition times
140
+ std::size_t typecnt; // transition types
141
+ std::size_t charcnt; // zone abbreviation characters
142
+ std::size_t leapcnt; // leap seconds (we expect none)
143
+ std::size_t ttisstdcnt; // UTC/local indicators (unused)
144
+ std::size_t ttisutcnt; // standard/wall indicators (unused)
145
+
146
+ bool Build(const tzhead& tzh);
147
+ std::size_t DataLength(std::size_t time_len) const;
148
+ };
149
+
150
+ // Builds the in-memory header using the raw bytes from the file.
151
+ bool Header::Build(const tzhead& tzh) {
152
+ std::int_fast32_t v;
153
+ if ((v = Decode32(tzh.tzh_timecnt)) < 0) return false;
154
+ timecnt = static_cast<std::size_t>(v);
155
+ if ((v = Decode32(tzh.tzh_typecnt)) < 0) return false;
156
+ typecnt = static_cast<std::size_t>(v);
157
+ if ((v = Decode32(tzh.tzh_charcnt)) < 0) return false;
158
+ charcnt = static_cast<std::size_t>(v);
159
+ if ((v = Decode32(tzh.tzh_leapcnt)) < 0) return false;
160
+ leapcnt = static_cast<std::size_t>(v);
161
+ if ((v = Decode32(tzh.tzh_ttisstdcnt)) < 0) return false;
162
+ ttisstdcnt = static_cast<std::size_t>(v);
163
+ if ((v = Decode32(tzh.tzh_ttisutcnt)) < 0) return false;
164
+ ttisutcnt = static_cast<std::size_t>(v);
165
+ return true;
166
+ }
167
+
168
+ // How many bytes of data are associated with this header. The result
169
+ // depends upon whether this is a section with 4-byte or 8-byte times.
170
+ std::size_t Header::DataLength(std::size_t time_len) const {
171
+ std::size_t len = 0;
172
+ len += (time_len + 1) * timecnt; // unix_time + type_index
173
+ len += (4 + 1 + 1) * typecnt; // utc_offset + is_dst + abbr_index
174
+ len += 1 * charcnt; // abbreviations
175
+ len += (time_len + 4) * leapcnt; // leap-time + TAI-UTC
176
+ len += 1 * ttisstdcnt; // UTC/local indicators
177
+ len += 1 * ttisutcnt; // standard/wall indicators
178
+ return len;
179
+ }
180
+
137
181
  // Does the rule for future transitions call for year-round daylight time?
138
182
  // See tz/zic.c:stringzone() for the details on how such rules are encoded.
139
183
  bool AllYearDST(const PosixTimeZone& posix) {
@@ -217,98 +261,6 @@ inline civil_second YearShift(const civil_second& cs, year_t shift) {
217
261
 
218
262
  } // namespace
219
263
 
220
- // What (no leap-seconds) UTC+seconds zoneinfo would look like.
221
- bool TimeZoneInfo::ResetToBuiltinUTC(const seconds& offset) {
222
- transition_types_.resize(1);
223
- TransitionType& tt(transition_types_.back());
224
- tt.utc_offset = static_cast<std::int_least32_t>(offset.count());
225
- tt.is_dst = false;
226
- tt.abbr_index = 0;
227
-
228
- // We temporarily add some redundant, contemporary (2015 through 2025)
229
- // transitions for performance reasons. See TimeZoneInfo::LocalTime().
230
- // TODO: Fix the performance issue and remove the extra transitions.
231
- transitions_.clear();
232
- transitions_.reserve(12);
233
- for (const std::int_fast64_t unix_time : {
234
- -(1LL << 59), // a "first half" transition
235
- 1420070400LL, // 2015-01-01T00:00:00+00:00
236
- 1451606400LL, // 2016-01-01T00:00:00+00:00
237
- 1483228800LL, // 2017-01-01T00:00:00+00:00
238
- 1514764800LL, // 2018-01-01T00:00:00+00:00
239
- 1546300800LL, // 2019-01-01T00:00:00+00:00
240
- 1577836800LL, // 2020-01-01T00:00:00+00:00
241
- 1609459200LL, // 2021-01-01T00:00:00+00:00
242
- 1640995200LL, // 2022-01-01T00:00:00+00:00
243
- 1672531200LL, // 2023-01-01T00:00:00+00:00
244
- 1704067200LL, // 2024-01-01T00:00:00+00:00
245
- 1735689600LL, // 2025-01-01T00:00:00+00:00
246
- }) {
247
- Transition& tr(*transitions_.emplace(transitions_.end()));
248
- tr.unix_time = unix_time;
249
- tr.type_index = 0;
250
- tr.civil_sec = LocalTime(tr.unix_time, tt).cs;
251
- tr.prev_civil_sec = tr.civil_sec - 1;
252
- }
253
-
254
- default_transition_type_ = 0;
255
- abbreviations_ = FixedOffsetToAbbr(offset);
256
- abbreviations_.append(1, '\0');
257
- future_spec_.clear(); // never needed for a fixed-offset zone
258
- extended_ = false;
259
-
260
- tt.civil_max = LocalTime(seconds::max().count(), tt).cs;
261
- tt.civil_min = LocalTime(seconds::min().count(), tt).cs;
262
-
263
- transitions_.shrink_to_fit();
264
- return true;
265
- }
266
-
267
- // Builds the in-memory header using the raw bytes from the file.
268
- bool TimeZoneInfo::Header::Build(const tzhead& tzh) {
269
- std::int_fast32_t v;
270
- if ((v = Decode32(tzh.tzh_timecnt)) < 0) return false;
271
- timecnt = static_cast<std::size_t>(v);
272
- if ((v = Decode32(tzh.tzh_typecnt)) < 0) return false;
273
- typecnt = static_cast<std::size_t>(v);
274
- if ((v = Decode32(tzh.tzh_charcnt)) < 0) return false;
275
- charcnt = static_cast<std::size_t>(v);
276
- if ((v = Decode32(tzh.tzh_leapcnt)) < 0) return false;
277
- leapcnt = static_cast<std::size_t>(v);
278
- if ((v = Decode32(tzh.tzh_ttisstdcnt)) < 0) return false;
279
- ttisstdcnt = static_cast<std::size_t>(v);
280
- if ((v = Decode32(tzh.tzh_ttisutcnt)) < 0) return false;
281
- ttisutcnt = static_cast<std::size_t>(v);
282
- return true;
283
- }
284
-
285
- // How many bytes of data are associated with this header. The result
286
- // depends upon whether this is a section with 4-byte or 8-byte times.
287
- std::size_t TimeZoneInfo::Header::DataLength(std::size_t time_len) const {
288
- std::size_t len = 0;
289
- len += (time_len + 1) * timecnt; // unix_time + type_index
290
- len += (4 + 1 + 1) * typecnt; // utc_offset + is_dst + abbr_index
291
- len += 1 * charcnt; // abbreviations
292
- len += (time_len + 4) * leapcnt; // leap-time + TAI-UTC
293
- len += 1 * ttisstdcnt; // UTC/local indicators
294
- len += 1 * ttisutcnt; // standard/wall indicators
295
- return len;
296
- }
297
-
298
- // zic(8) can generate no-op transitions when a zone changes rules at an
299
- // instant when there is actually no discontinuity. So we check whether
300
- // two transitions have equivalent types (same offset/is_dst/abbr).
301
- bool TimeZoneInfo::EquivTransitions(std::uint_fast8_t tt1_index,
302
- std::uint_fast8_t tt2_index) const {
303
- if (tt1_index == tt2_index) return true;
304
- const TransitionType& tt1(transition_types_[tt1_index]);
305
- const TransitionType& tt2(transition_types_[tt2_index]);
306
- if (tt1.utc_offset != tt2.utc_offset) return false;
307
- if (tt1.is_dst != tt2.is_dst) return false;
308
- if (tt1.abbr_index != tt2.abbr_index) return false;
309
- return true;
310
- }
311
-
312
264
  // Find/make a transition type with these attributes.
313
265
  bool TimeZoneInfo::GetTransitionType(std::int_fast32_t utc_offset, bool is_dst,
314
266
  const std::string& abbr,
@@ -341,6 +293,20 @@ bool TimeZoneInfo::GetTransitionType(std::int_fast32_t utc_offset, bool is_dst,
341
293
  return true;
342
294
  }
343
295
 
296
+ // zic(8) can generate no-op transitions when a zone changes rules at an
297
+ // instant when there is actually no discontinuity. So we check whether
298
+ // two transitions have equivalent types (same offset/is_dst/abbr).
299
+ bool TimeZoneInfo::EquivTransitions(std::uint_fast8_t tt1_index,
300
+ std::uint_fast8_t tt2_index) const {
301
+ if (tt1_index == tt2_index) return true;
302
+ const TransitionType& tt1(transition_types_[tt1_index]);
303
+ const TransitionType& tt2(transition_types_[tt2_index]);
304
+ if (tt1.utc_offset != tt2.utc_offset) return false;
305
+ if (tt1.is_dst != tt2.is_dst) return false;
306
+ if (tt1.abbr_index != tt2.abbr_index) return false;
307
+ return true;
308
+ }
309
+
344
310
  // Use the POSIX-TZ-environment-variable-style string to handle times
345
311
  // in years after the last transition stored in the zoneinfo data.
346
312
  bool TimeZoneInfo::ExtendTransitions() {
@@ -372,11 +338,13 @@ bool TimeZoneInfo::ExtendTransitions() {
372
338
  return EquivTransitions(transitions_.back().type_index, dst_ti);
373
339
  }
374
340
 
375
- // Extend the transitions for an additional 400 years using the
376
- // future specification. Years beyond those can be handled by
377
- // mapping back to a cycle-equivalent year within that range.
378
- // We may need two additional transitions for the current year.
379
- transitions_.reserve(transitions_.size() + 400 * 2 + 2);
341
+ // Extend the transitions for an additional 401 years using the future
342
+ // specification. Years beyond those can be handled by mapping back to
343
+ // a cycle-equivalent year within that range. Note that we need 401
344
+ // (well, at least the first transition in the 401st year) so that the
345
+ // end of the 400th year is mapped back to an extended year. And first
346
+ // we may also need two additional transitions for the current year.
347
+ transitions_.reserve(transitions_.size() + 2 + 401 * 2);
380
348
  extended_ = true;
381
349
 
382
350
  const Transition& last(transitions_.back());
@@ -390,210 +358,23 @@ bool TimeZoneInfo::ExtendTransitions() {
390
358
 
391
359
  Transition dst = {0, dst_ti, civil_second(), civil_second()};
392
360
  Transition std = {0, std_ti, civil_second(), civil_second()};
393
- for (const year_t limit = last_year_ + 400;; ++last_year_) {
361
+ for (const year_t limit = last_year_ + 401;; ++last_year_) {
394
362
  auto dst_trans_off = TransOffset(leap_year, jan1_weekday, posix.dst_start);
395
363
  auto std_trans_off = TransOffset(leap_year, jan1_weekday, posix.dst_end);
396
364
  dst.unix_time = jan1_time + dst_trans_off - posix.std_offset;
397
- std.unix_time = jan1_time + std_trans_off - posix.dst_offset;
398
- const auto* ta = dst.unix_time < std.unix_time ? &dst : &std;
399
- const auto* tb = dst.unix_time < std.unix_time ? &std : &dst;
400
- if (last_time < tb->unix_time) {
401
- if (last_time < ta->unix_time) transitions_.push_back(*ta);
402
- transitions_.push_back(*tb);
403
- }
404
- if (last_year_ == limit) break;
405
- jan1_time += kSecsPerYear[leap_year];
406
- jan1_weekday = (jan1_weekday + kDaysPerYear[leap_year]) % 7;
407
- leap_year = !leap_year && IsLeap(last_year_ + 1);
408
- }
409
-
410
- return true;
411
- }
412
-
413
- bool TimeZoneInfo::Load(ZoneInfoSource* zip) {
414
- // Read and validate the header.
415
- tzhead tzh;
416
- if (zip->Read(&tzh, sizeof(tzh)) != sizeof(tzh)) return false;
417
- if (strncmp(tzh.tzh_magic, TZ_MAGIC, sizeof(tzh.tzh_magic)) != 0)
418
- return false;
419
- Header hdr;
420
- if (!hdr.Build(tzh)) return false;
421
- std::size_t time_len = 4;
422
- if (tzh.tzh_version[0] != '\0') {
423
- // Skip the 4-byte data.
424
- if (zip->Skip(hdr.DataLength(time_len)) != 0) return false;
425
- // Read and validate the header for the 8-byte data.
426
- if (zip->Read(&tzh, sizeof(tzh)) != sizeof(tzh)) return false;
427
- if (strncmp(tzh.tzh_magic, TZ_MAGIC, sizeof(tzh.tzh_magic)) != 0)
428
- return false;
429
- if (tzh.tzh_version[0] == '\0') return false;
430
- if (!hdr.Build(tzh)) return false;
431
- time_len = 8;
432
- }
433
- if (hdr.typecnt == 0) return false;
434
- if (hdr.leapcnt != 0) {
435
- // This code assumes 60-second minutes so we do not want
436
- // the leap-second encoded zoneinfo. We could reverse the
437
- // compensation, but the "right" encoding is rarely used
438
- // so currently we simply reject such data.
439
- return false;
440
- }
441
- if (hdr.ttisstdcnt != 0 && hdr.ttisstdcnt != hdr.typecnt) return false;
442
- if (hdr.ttisutcnt != 0 && hdr.ttisutcnt != hdr.typecnt) return false;
443
-
444
- // Read the data into a local buffer.
445
- std::size_t len = hdr.DataLength(time_len);
446
- std::vector<char> tbuf(len);
447
- if (zip->Read(tbuf.data(), len) != len) return false;
448
- const char* bp = tbuf.data();
449
-
450
- // Decode and validate the transitions.
451
- transitions_.reserve(hdr.timecnt + 2);
452
- transitions_.resize(hdr.timecnt);
453
- for (std::size_t i = 0; i != hdr.timecnt; ++i) {
454
- transitions_[i].unix_time = (time_len == 4) ? Decode32(bp) : Decode64(bp);
455
- bp += time_len;
456
- if (i != 0) {
457
- // Check that the transitions are ordered by time (as zic guarantees).
458
- if (!Transition::ByUnixTime()(transitions_[i - 1], transitions_[i]))
459
- return false; // out of order
460
- }
461
- }
462
- bool seen_type_0 = false;
463
- for (std::size_t i = 0; i != hdr.timecnt; ++i) {
464
- transitions_[i].type_index = Decode8(bp++);
465
- if (transitions_[i].type_index >= hdr.typecnt) return false;
466
- if (transitions_[i].type_index == 0) seen_type_0 = true;
467
- }
468
-
469
- // Decode and validate the transition types.
470
- transition_types_.reserve(hdr.typecnt + 2);
471
- transition_types_.resize(hdr.typecnt);
472
- for (std::size_t i = 0; i != hdr.typecnt; ++i) {
473
- transition_types_[i].utc_offset =
474
- static_cast<std::int_least32_t>(Decode32(bp));
475
- if (transition_types_[i].utc_offset >= kSecsPerDay ||
476
- transition_types_[i].utc_offset <= -kSecsPerDay)
477
- return false;
478
- bp += 4;
479
- transition_types_[i].is_dst = (Decode8(bp++) != 0);
480
- transition_types_[i].abbr_index = Decode8(bp++);
481
- if (transition_types_[i].abbr_index >= hdr.charcnt) return false;
482
- }
483
-
484
- // Determine the before-first-transition type.
485
- default_transition_type_ = 0;
486
- if (seen_type_0 && hdr.timecnt != 0) {
487
- std::uint_fast8_t index = 0;
488
- if (transition_types_[0].is_dst) {
489
- index = transitions_[0].type_index;
490
- while (index != 0 && transition_types_[index].is_dst) --index;
491
- }
492
- while (index != hdr.typecnt && transition_types_[index].is_dst) ++index;
493
- if (index != hdr.typecnt) default_transition_type_ = index;
494
- }
495
-
496
- // Copy all the abbreviations.
497
- abbreviations_.reserve(hdr.charcnt + 10);
498
- abbreviations_.assign(bp, hdr.charcnt);
499
- bp += hdr.charcnt;
500
-
501
- // Skip the unused portions. We've already dispensed with leap-second
502
- // encoded zoneinfo. The ttisstd/ttisgmt indicators only apply when
503
- // interpreting a POSIX spec that does not include start/end rules, and
504
- // that isn't the case here (see "zic -p").
505
- bp += (time_len + 4) * hdr.leapcnt; // leap-time + TAI-UTC
506
- bp += 1 * hdr.ttisstdcnt; // UTC/local indicators
507
- bp += 1 * hdr.ttisutcnt; // standard/wall indicators
508
- assert(bp == tbuf.data() + tbuf.size());
509
-
510
- future_spec_.clear();
511
- if (tzh.tzh_version[0] != '\0') {
512
- // Snarf up the NL-enclosed future POSIX spec. Note
513
- // that version '3' files utilize an extended format.
514
- auto get_char = [](ZoneInfoSource* azip) -> int {
515
- unsigned char ch; // all non-EOF results are positive
516
- return (azip->Read(&ch, 1) == 1) ? ch : EOF;
517
- };
518
- if (get_char(zip) != '\n') return false;
519
- for (int c = get_char(zip); c != '\n'; c = get_char(zip)) {
520
- if (c == EOF) return false;
521
- future_spec_.push_back(static_cast<char>(c));
522
- }
523
- }
524
-
525
- // We don't check for EOF so that we're forwards compatible.
526
-
527
- // If we did not find version information during the standard loading
528
- // process (as of tzh_version '3' that is unsupported), then ask the
529
- // ZoneInfoSource for any out-of-bound version string it may be privy to.
530
- if (version_.empty()) {
531
- version_ = zip->Version();
532
- }
533
-
534
- // Trim redundant transitions. zic may have added these to work around
535
- // differences between the glibc and reference implementations (see
536
- // zic.c:dontmerge) or to avoid bugs in old readers. For us, they just
537
- // get in the way when we do future_spec_ extension.
538
- while (hdr.timecnt > 1) {
539
- if (!EquivTransitions(transitions_[hdr.timecnt - 1].type_index,
540
- transitions_[hdr.timecnt - 2].type_index)) {
541
- break;
542
- }
543
- hdr.timecnt -= 1;
544
- }
545
- transitions_.resize(hdr.timecnt);
546
-
547
- // Ensure that there is always a transition in the first half of the
548
- // time line (the second half is handled below) so that the signed
549
- // difference between a civil_second and the civil_second of its
550
- // previous transition is always representable, without overflow.
551
- if (transitions_.empty() || transitions_.front().unix_time >= 0) {
552
- Transition& tr(*transitions_.emplace(transitions_.begin()));
553
- tr.unix_time = -(1LL << 59); // -18267312070-10-26T17:01:52+00:00
554
- tr.type_index = default_transition_type_;
555
- }
556
-
557
- // Extend the transitions using the future specification.
558
- if (!ExtendTransitions()) return false;
559
-
560
- // Ensure that there is always a transition in the second half of the
561
- // time line (the first half is handled above) so that the signed
562
- // difference between a civil_second and the civil_second of its
563
- // previous transition is always representable, without overflow.
564
- const Transition& last(transitions_.back());
565
- if (last.unix_time < 0) {
566
- const std::uint_fast8_t type_index = last.type_index;
567
- Transition& tr(*transitions_.emplace(transitions_.end()));
568
- tr.unix_time = 2147483647; // 2038-01-19T03:14:07+00:00
569
- tr.type_index = type_index;
570
- }
571
-
572
- // Compute the local civil time for each transition and the preceding
573
- // second. These will be used for reverse conversions in MakeTime().
574
- const TransitionType* ttp = &transition_types_[default_transition_type_];
575
- for (std::size_t i = 0; i != transitions_.size(); ++i) {
576
- Transition& tr(transitions_[i]);
577
- tr.prev_civil_sec = LocalTime(tr.unix_time, *ttp).cs - 1;
578
- ttp = &transition_types_[tr.type_index];
579
- tr.civil_sec = LocalTime(tr.unix_time, *ttp).cs;
580
- if (i != 0) {
581
- // Check that the transitions are ordered by civil time. Essentially
582
- // this means that an offset change cannot cross another such change.
583
- // No one does this in practice, and we depend on it in MakeTime().
584
- if (!Transition::ByCivilTime()(transitions_[i - 1], tr))
585
- return false; // out of order
365
+ std.unix_time = jan1_time + std_trans_off - posix.dst_offset;
366
+ const auto* ta = dst.unix_time < std.unix_time ? &dst : &std;
367
+ const auto* tb = dst.unix_time < std.unix_time ? &std : &dst;
368
+ if (last_time < tb->unix_time) {
369
+ if (last_time < ta->unix_time) transitions_.push_back(*ta);
370
+ transitions_.push_back(*tb);
586
371
  }
372
+ if (last_year_ == limit) break;
373
+ jan1_time += kSecsPerYear[leap_year];
374
+ jan1_weekday = (jan1_weekday + kDaysPerYear[leap_year]) % 7;
375
+ leap_year = !leap_year && IsLeap(last_year_ + 1);
587
376
  }
588
377
 
589
- // Compute the maximum/minimum civil times that can be converted to a
590
- // time_point<seconds> for each of the zone's transition types.
591
- for (auto& tt : transition_types_) {
592
- tt.civil_max = LocalTime(seconds::max().count(), tt).cs;
593
- tt.civil_min = LocalTime(seconds::min().count(), tt).cs;
594
- }
595
-
596
- transitions_.shrink_to_fit();
597
378
  return true;
598
379
  }
599
380
 
@@ -795,6 +576,240 @@ std::unique_ptr<ZoneInfoSource> FuchsiaZoneInfoSource::Open(
795
576
 
796
577
  } // namespace
797
578
 
579
+ // What (no leap-seconds) UTC+seconds zoneinfo would look like.
580
+ bool TimeZoneInfo::ResetToBuiltinUTC(const seconds& offset) {
581
+ transition_types_.resize(1);
582
+ TransitionType& tt(transition_types_.back());
583
+ tt.utc_offset = static_cast<std::int_least32_t>(offset.count());
584
+ tt.is_dst = false;
585
+ tt.abbr_index = 0;
586
+
587
+ // We temporarily add some redundant, contemporary (2015 through 2025)
588
+ // transitions for performance reasons. See TimeZoneInfo::LocalTime().
589
+ // TODO: Fix the performance issue and remove the extra transitions.
590
+ transitions_.clear();
591
+ transitions_.reserve(12);
592
+ for (const std::int_fast64_t unix_time : {
593
+ -(1LL << 59), // a "first half" transition
594
+ 1420070400LL, // 2015-01-01T00:00:00+00:00
595
+ 1451606400LL, // 2016-01-01T00:00:00+00:00
596
+ 1483228800LL, // 2017-01-01T00:00:00+00:00
597
+ 1514764800LL, // 2018-01-01T00:00:00+00:00
598
+ 1546300800LL, // 2019-01-01T00:00:00+00:00
599
+ 1577836800LL, // 2020-01-01T00:00:00+00:00
600
+ 1609459200LL, // 2021-01-01T00:00:00+00:00
601
+ 1640995200LL, // 2022-01-01T00:00:00+00:00
602
+ 1672531200LL, // 2023-01-01T00:00:00+00:00
603
+ 1704067200LL, // 2024-01-01T00:00:00+00:00
604
+ 1735689600LL, // 2025-01-01T00:00:00+00:00
605
+ }) {
606
+ Transition& tr(*transitions_.emplace(transitions_.end()));
607
+ tr.unix_time = unix_time;
608
+ tr.type_index = 0;
609
+ tr.civil_sec = LocalTime(tr.unix_time, tt).cs;
610
+ tr.prev_civil_sec = tr.civil_sec - 1;
611
+ }
612
+
613
+ default_transition_type_ = 0;
614
+ abbreviations_ = FixedOffsetToAbbr(offset);
615
+ abbreviations_.append(1, '\0');
616
+ future_spec_.clear(); // never needed for a fixed-offset zone
617
+ extended_ = false;
618
+
619
+ tt.civil_max = LocalTime(seconds::max().count(), tt).cs;
620
+ tt.civil_min = LocalTime(seconds::min().count(), tt).cs;
621
+
622
+ transitions_.shrink_to_fit();
623
+ return true;
624
+ }
625
+
626
+ bool TimeZoneInfo::Load(ZoneInfoSource* zip) {
627
+ // Read and validate the header.
628
+ tzhead tzh;
629
+ if (zip->Read(&tzh, sizeof(tzh)) != sizeof(tzh)) return false;
630
+ if (strncmp(tzh.tzh_magic, TZ_MAGIC, sizeof(tzh.tzh_magic)) != 0)
631
+ return false;
632
+ Header hdr;
633
+ if (!hdr.Build(tzh)) return false;
634
+ std::size_t time_len = 4;
635
+ if (tzh.tzh_version[0] != '\0') {
636
+ // Skip the 4-byte data.
637
+ if (zip->Skip(hdr.DataLength(time_len)) != 0) return false;
638
+ // Read and validate the header for the 8-byte data.
639
+ if (zip->Read(&tzh, sizeof(tzh)) != sizeof(tzh)) return false;
640
+ if (strncmp(tzh.tzh_magic, TZ_MAGIC, sizeof(tzh.tzh_magic)) != 0)
641
+ return false;
642
+ if (tzh.tzh_version[0] == '\0') return false;
643
+ if (!hdr.Build(tzh)) return false;
644
+ time_len = 8;
645
+ }
646
+ if (hdr.typecnt == 0) return false;
647
+ if (hdr.leapcnt != 0) {
648
+ // This code assumes 60-second minutes so we do not want
649
+ // the leap-second encoded zoneinfo. We could reverse the
650
+ // compensation, but the "right" encoding is rarely used
651
+ // so currently we simply reject such data.
652
+ return false;
653
+ }
654
+ if (hdr.ttisstdcnt != 0 && hdr.ttisstdcnt != hdr.typecnt) return false;
655
+ if (hdr.ttisutcnt != 0 && hdr.ttisutcnt != hdr.typecnt) return false;
656
+
657
+ // Read the data into a local buffer.
658
+ std::size_t len = hdr.DataLength(time_len);
659
+ std::vector<char> tbuf(len);
660
+ if (zip->Read(tbuf.data(), len) != len) return false;
661
+ const char* bp = tbuf.data();
662
+
663
+ // Decode and validate the transitions.
664
+ transitions_.reserve(hdr.timecnt + 2);
665
+ transitions_.resize(hdr.timecnt);
666
+ for (std::size_t i = 0; i != hdr.timecnt; ++i) {
667
+ transitions_[i].unix_time = (time_len == 4) ? Decode32(bp) : Decode64(bp);
668
+ bp += time_len;
669
+ if (i != 0) {
670
+ // Check that the transitions are ordered by time (as zic guarantees).
671
+ if (!Transition::ByUnixTime()(transitions_[i - 1], transitions_[i]))
672
+ return false; // out of order
673
+ }
674
+ }
675
+ bool seen_type_0 = false;
676
+ for (std::size_t i = 0; i != hdr.timecnt; ++i) {
677
+ transitions_[i].type_index = Decode8(bp++);
678
+ if (transitions_[i].type_index >= hdr.typecnt) return false;
679
+ if (transitions_[i].type_index == 0) seen_type_0 = true;
680
+ }
681
+
682
+ // Decode and validate the transition types.
683
+ transition_types_.reserve(hdr.typecnt + 2);
684
+ transition_types_.resize(hdr.typecnt);
685
+ for (std::size_t i = 0; i != hdr.typecnt; ++i) {
686
+ transition_types_[i].utc_offset =
687
+ static_cast<std::int_least32_t>(Decode32(bp));
688
+ if (transition_types_[i].utc_offset >= kSecsPerDay ||
689
+ transition_types_[i].utc_offset <= -kSecsPerDay)
690
+ return false;
691
+ bp += 4;
692
+ transition_types_[i].is_dst = (Decode8(bp++) != 0);
693
+ transition_types_[i].abbr_index = Decode8(bp++);
694
+ if (transition_types_[i].abbr_index >= hdr.charcnt) return false;
695
+ }
696
+
697
+ // Determine the before-first-transition type.
698
+ default_transition_type_ = 0;
699
+ if (seen_type_0 && hdr.timecnt != 0) {
700
+ std::uint_fast8_t index = 0;
701
+ if (transition_types_[0].is_dst) {
702
+ index = transitions_[0].type_index;
703
+ while (index != 0 && transition_types_[index].is_dst) --index;
704
+ }
705
+ while (index != hdr.typecnt && transition_types_[index].is_dst) ++index;
706
+ if (index != hdr.typecnt) default_transition_type_ = index;
707
+ }
708
+
709
+ // Copy all the abbreviations.
710
+ abbreviations_.reserve(hdr.charcnt + 10);
711
+ abbreviations_.assign(bp, hdr.charcnt);
712
+ bp += hdr.charcnt;
713
+
714
+ // Skip the unused portions. We've already dispensed with leap-second
715
+ // encoded zoneinfo. The ttisstd/ttisgmt indicators only apply when
716
+ // interpreting a POSIX spec that does not include start/end rules, and
717
+ // that isn't the case here (see "zic -p").
718
+ bp += (time_len + 4) * hdr.leapcnt; // leap-time + TAI-UTC
719
+ bp += 1 * hdr.ttisstdcnt; // UTC/local indicators
720
+ bp += 1 * hdr.ttisutcnt; // standard/wall indicators
721
+ assert(bp == tbuf.data() + tbuf.size());
722
+
723
+ future_spec_.clear();
724
+ if (tzh.tzh_version[0] != '\0') {
725
+ // Snarf up the NL-enclosed future POSIX spec. Note
726
+ // that version '3' files utilize an extended format.
727
+ auto get_char = [](ZoneInfoSource* azip) -> int {
728
+ unsigned char ch; // all non-EOF results are positive
729
+ return (azip->Read(&ch, 1) == 1) ? ch : EOF;
730
+ };
731
+ if (get_char(zip) != '\n') return false;
732
+ for (int c = get_char(zip); c != '\n'; c = get_char(zip)) {
733
+ if (c == EOF) return false;
734
+ future_spec_.push_back(static_cast<char>(c));
735
+ }
736
+ }
737
+
738
+ // We don't check for EOF so that we're forwards compatible.
739
+
740
+ // If we did not find version information during the standard loading
741
+ // process (as of tzh_version '3' that is unsupported), then ask the
742
+ // ZoneInfoSource for any out-of-bound version string it may be privy to.
743
+ if (version_.empty()) {
744
+ version_ = zip->Version();
745
+ }
746
+
747
+ // Trim redundant transitions. zic may have added these to work around
748
+ // differences between the glibc and reference implementations (see
749
+ // zic.c:dontmerge) or to avoid bugs in old readers. For us, they just
750
+ // get in the way when we do future_spec_ extension.
751
+ while (hdr.timecnt > 1) {
752
+ if (!EquivTransitions(transitions_[hdr.timecnt - 1].type_index,
753
+ transitions_[hdr.timecnt - 2].type_index)) {
754
+ break;
755
+ }
756
+ hdr.timecnt -= 1;
757
+ }
758
+ transitions_.resize(hdr.timecnt);
759
+
760
+ // Ensure that there is always a transition in the first half of the
761
+ // time line (the second half is handled below) so that the signed
762
+ // difference between a civil_second and the civil_second of its
763
+ // previous transition is always representable, without overflow.
764
+ if (transitions_.empty() || transitions_.front().unix_time >= 0) {
765
+ Transition& tr(*transitions_.emplace(transitions_.begin()));
766
+ tr.unix_time = -(1LL << 59); // -18267312070-10-26T17:01:52+00:00
767
+ tr.type_index = default_transition_type_;
768
+ }
769
+
770
+ // Extend the transitions using the future specification.
771
+ if (!ExtendTransitions()) return false;
772
+
773
+ // Ensure that there is always a transition in the second half of the
774
+ // time line (the first half is handled above) so that the signed
775
+ // difference between a civil_second and the civil_second of its
776
+ // previous transition is always representable, without overflow.
777
+ const Transition& last(transitions_.back());
778
+ if (last.unix_time < 0) {
779
+ const std::uint_fast8_t type_index = last.type_index;
780
+ Transition& tr(*transitions_.emplace(transitions_.end()));
781
+ tr.unix_time = 2147483647; // 2038-01-19T03:14:07+00:00
782
+ tr.type_index = type_index;
783
+ }
784
+
785
+ // Compute the local civil time for each transition and the preceding
786
+ // second. These will be used for reverse conversions in MakeTime().
787
+ const TransitionType* ttp = &transition_types_[default_transition_type_];
788
+ for (std::size_t i = 0; i != transitions_.size(); ++i) {
789
+ Transition& tr(transitions_[i]);
790
+ tr.prev_civil_sec = LocalTime(tr.unix_time, *ttp).cs - 1;
791
+ ttp = &transition_types_[tr.type_index];
792
+ tr.civil_sec = LocalTime(tr.unix_time, *ttp).cs;
793
+ if (i != 0) {
794
+ // Check that the transitions are ordered by civil time. Essentially
795
+ // this means that an offset change cannot cross another such change.
796
+ // No one does this in practice, and we depend on it in MakeTime().
797
+ if (!Transition::ByCivilTime()(transitions_[i - 1], tr))
798
+ return false; // out of order
799
+ }
800
+ }
801
+
802
+ // Compute the maximum/minimum civil times that can be converted to a
803
+ // time_point<seconds> for each of the zone's transition types.
804
+ for (auto& tt : transition_types_) {
805
+ tt.civil_max = LocalTime(seconds::max().count(), tt).cs;
806
+ tt.civil_min = LocalTime(seconds::min().count(), tt).cs;
807
+ }
808
+
809
+ transitions_.shrink_to_fit();
810
+ return true;
811
+ }
812
+
798
813
  bool TimeZoneInfo::Load(const std::string& name) {
799
814
  // We can ensure that the loading of UTC or any other fixed-offset
800
815
  // zone never fails because the simple, fixed-offset state can be
@@ -816,6 +831,18 @@ bool TimeZoneInfo::Load(const std::string& name) {
816
831
  return zip != nullptr && Load(zip.get());
817
832
  }
818
833
 
834
+ std::unique_ptr<TimeZoneInfo> TimeZoneInfo::UTC() {
835
+ auto tz = std::unique_ptr<TimeZoneInfo>(new TimeZoneInfo);
836
+ tz->ResetToBuiltinUTC(seconds::zero());
837
+ return tz;
838
+ }
839
+
840
+ std::unique_ptr<TimeZoneInfo> TimeZoneInfo::Make(const std::string& name) {
841
+ auto tz = std::unique_ptr<TimeZoneInfo>(new TimeZoneInfo);
842
+ if (!tz->Load(name)) tz.reset(); // fallback to UTC
843
+ return tz;
844
+ }
845
+
819
846
  // BreakTime() translation for a particular transition type.
820
847
  time_zone::absolute_lookup TimeZoneInfo::LocalTime(
821
848
  std::int_fast64_t unix_time, const TransitionType& tt) const {