grpc 1.43.1 → 1.44.0.pre2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (382) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +84 -64
  3. data/include/grpc/grpc_security.h +10 -0
  4. data/include/grpc/impl/codegen/compression_types.h +0 -2
  5. data/include/grpc/impl/codegen/grpc_types.h +6 -0
  6. data/src/core/ext/filters/client_channel/backend_metric.h +1 -1
  7. data/src/core/ext/filters/client_channel/client_channel.cc +62 -68
  8. data/src/core/ext/filters/client_channel/client_channel.h +8 -8
  9. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
  10. data/src/core/ext/filters/client_channel/config_selector.h +4 -4
  11. data/src/core/ext/filters/client_channel/dynamic_filters.h +1 -1
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +16 -14
  13. data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
  14. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
  15. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
  17. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +3 -7
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +31 -32
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +0 -7
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
  21. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -1
  22. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -1
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +43 -29
  24. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -2
  25. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +120 -68
  26. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +60 -48
  27. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +62 -61
  28. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +16 -11
  29. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +11 -5
  30. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +19 -15
  31. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +14 -12
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +3 -2
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +50 -105
  35. data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
  36. data/src/core/ext/filters/client_channel/lb_policy.h +19 -3
  37. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +3 -3
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +207 -81
  39. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +22 -12
  40. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +19 -15
  41. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +23 -38
  42. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +118 -207
  43. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +25 -32
  44. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  45. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +82 -73
  46. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +10 -10
  47. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
  48. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +2 -5
  49. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
  50. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +157 -67
  51. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +1 -1
  52. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +2 -2
  53. data/src/core/ext/filters/client_channel/retry_filter.cc +37 -64
  54. data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
  55. data/src/core/ext/filters/client_channel/retry_service_config.h +1 -1
  56. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
  57. data/src/core/ext/filters/client_channel/subchannel.cc +12 -16
  58. data/src/core/ext/filters/client_channel/subchannel.h +2 -3
  59. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +37 -48
  60. data/src/core/ext/filters/fault_injection/service_config_parser.cc +6 -8
  61. data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
  62. data/src/core/ext/filters/http/client/http_client_filter.cc +51 -122
  63. data/src/core/ext/filters/http/client_authority_filter.cc +8 -24
  64. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +42 -140
  65. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +5 -25
  66. data/src/core/ext/filters/http/server/http_server_filter.cc +50 -135
  67. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
  68. data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
  69. data/src/core/ext/filters/rbac/rbac_filter.cc +157 -0
  70. data/src/core/ext/filters/rbac/rbac_filter.h +74 -0
  71. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +605 -0
  72. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +70 -0
  73. data/src/core/ext/filters/server_config_selector/server_config_selector.h +3 -2
  74. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +11 -6
  75. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +1 -1
  76. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +1 -1
  77. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +89 -29
  78. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -1
  79. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +45 -186
  80. data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
  81. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +341 -279
  82. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +69 -159
  83. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +1 -1
  84. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
  85. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +19 -32
  86. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -1
  87. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +94 -1
  88. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -24
  89. data/src/core/ext/transport/chttp2/transport/internal.h +0 -33
  90. data/src/core/ext/transport/chttp2/transport/parsing.cc +0 -6
  91. data/src/core/ext/transport/chttp2/transport/writing.cc +47 -116
  92. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
  93. data/src/core/ext/transport/inproc/inproc_transport.cc +11 -63
  94. data/src/core/ext/transport/inproc/inproc_transport.h +0 -3
  95. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +61 -0
  96. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +146 -0
  97. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +188 -0
  98. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
  99. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +56 -0
  100. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
  101. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
  102. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
  103. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c +58 -0
  104. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h +55 -0
  105. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c +44 -0
  106. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h +40 -0
  107. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
  108. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
  109. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c +75 -0
  110. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h +55 -0
  111. data/src/core/ext/xds/upb_utils.h +65 -0
  112. data/src/core/ext/xds/xds_api.cc +81 -3458
  113. data/src/core/ext/xds/xds_api.h +56 -611
  114. data/src/core/ext/xds/xds_bootstrap.cc +189 -125
  115. data/src/core/ext/xds/xds_bootstrap.h +20 -15
  116. data/src/core/ext/xds/xds_certificate_provider.h +1 -0
  117. data/src/core/ext/xds/xds_channel_creds.cc +108 -0
  118. data/src/core/ext/xds/xds_channel_creds.h +50 -0
  119. data/src/core/ext/xds/xds_client.cc +584 -994
  120. data/src/core/ext/xds/xds_client.h +78 -135
  121. data/src/core/ext/xds/xds_cluster.cc +451 -0
  122. data/src/core/ext/xds/xds_cluster.h +111 -0
  123. data/src/core/ext/xds/xds_common_types.cc +388 -0
  124. data/src/core/ext/xds/xds_common_types.h +110 -0
  125. data/src/core/ext/xds/xds_endpoint.cc +364 -0
  126. data/src/core/ext/xds/xds_endpoint.h +135 -0
  127. data/src/core/ext/xds/xds_http_filters.cc +5 -0
  128. data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
  129. data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
  130. data/src/core/ext/xds/xds_listener.cc +1036 -0
  131. data/src/core/ext/xds/xds_listener.h +220 -0
  132. data/src/core/ext/{transport/chttp2/transport/hpack_utils.h → xds/xds_resource_type.cc} +12 -9
  133. data/src/core/ext/xds/xds_resource_type.h +98 -0
  134. data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
  135. data/src/core/ext/xds/xds_route_config.cc +993 -0
  136. data/src/core/ext/xds/xds_route_config.h +215 -0
  137. data/src/core/ext/xds/xds_routing.cc +11 -8
  138. data/src/core/ext/xds/xds_routing.h +8 -5
  139. data/src/core/ext/xds/xds_server_config_fetcher.cc +159 -99
  140. data/src/core/lib/address_utils/parse_address.cc +20 -0
  141. data/src/core/lib/address_utils/parse_address.h +5 -0
  142. data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
  143. data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
  144. data/src/core/lib/backoff/backoff.cc +4 -30
  145. data/src/core/lib/backoff/backoff.h +3 -3
  146. data/src/core/lib/channel/channel_args.cc +0 -1
  147. data/src/core/lib/channel/channel_stack.cc +8 -0
  148. data/src/core/lib/channel/channel_stack.h +1 -1
  149. data/src/core/lib/channel/channel_stack_builder.cc +5 -9
  150. data/src/core/lib/channel/channel_stack_builder.h +4 -7
  151. data/src/core/lib/channel/channelz.cc +1 -0
  152. data/src/core/lib/compression/compression.cc +19 -111
  153. data/src/core/lib/compression/compression_internal.cc +142 -202
  154. data/src/core/lib/compression/compression_internal.h +64 -69
  155. data/src/core/lib/compression/message_compress.cc +11 -11
  156. data/src/core/lib/compression/message_compress.h +2 -2
  157. data/src/core/lib/gpr/useful.h +4 -0
  158. data/src/core/lib/gprpp/bitset.h +7 -0
  159. data/src/core/lib/gprpp/chunked_vector.h +45 -3
  160. data/src/core/lib/gprpp/status_helper.cc +20 -28
  161. data/src/core/lib/gprpp/status_helper.h +6 -19
  162. data/src/core/lib/gprpp/table.h +11 -0
  163. data/src/core/lib/http/httpcli.cc +37 -46
  164. data/src/core/lib/http/httpcli.h +3 -15
  165. data/src/core/lib/iomgr/call_combiner.cc +15 -4
  166. data/src/core/lib/iomgr/closure.h +29 -9
  167. data/src/core/lib/iomgr/combiner.cc +25 -3
  168. data/src/core/lib/iomgr/error.cc +2 -0
  169. data/src/core/lib/iomgr/error.h +3 -0
  170. data/src/core/lib/iomgr/event_engine/iomgr.cc +3 -2
  171. data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
  172. data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
  173. data/src/core/lib/iomgr/event_engine/resolver.cc +66 -48
  174. data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
  175. data/src/core/lib/iomgr/exec_ctx.cc +22 -9
  176. data/src/core/lib/iomgr/executor.cc +10 -1
  177. data/src/core/lib/iomgr/fork_posix.cc +3 -2
  178. data/src/core/lib/iomgr/iomgr_custom.cc +4 -1
  179. data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
  180. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
  181. data/src/core/lib/iomgr/iomgr_windows.cc +2 -2
  182. data/src/core/lib/iomgr/port.h +2 -2
  183. data/src/core/lib/iomgr/resolve_address.cc +5 -24
  184. data/src/core/lib/iomgr/resolve_address.h +47 -44
  185. data/src/core/lib/iomgr/resolve_address_custom.cc +131 -109
  186. data/src/core/lib/iomgr/resolve_address_custom.h +101 -19
  187. data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
  188. data/src/core/lib/iomgr/resolve_address_posix.cc +82 -66
  189. data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
  190. data/src/core/lib/iomgr/resolve_address_windows.cc +93 -74
  191. data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
  192. data/src/core/lib/iomgr/resolved_address.h +39 -0
  193. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -0
  194. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +1 -0
  195. data/src/core/lib/iomgr/unix_sockets_posix.cc +22 -34
  196. data/src/core/lib/iomgr/unix_sockets_posix.h +4 -7
  197. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
  198. data/src/core/lib/matchers/matchers.cc +1 -1
  199. data/src/core/lib/promise/activity.h +49 -20
  200. data/src/core/lib/promise/detail/status.h +5 -0
  201. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
  202. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
  203. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +10 -5
  204. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.cc +3 -2
  205. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.h +4 -5
  206. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
  207. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +4 -4
  208. data/src/core/lib/resource_quota/api.h +0 -1
  209. data/src/core/lib/{gprpp → resource_quota}/arena.cc +16 -13
  210. data/src/core/lib/{gprpp → resource_quota}/arena.h +24 -13
  211. data/src/core/lib/security/authorization/evaluate_args.cc +30 -15
  212. data/src/core/lib/security/authorization/evaluate_args.h +1 -0
  213. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
  214. data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
  215. data/src/core/lib/security/authorization/matchers.cc +227 -0
  216. data/src/core/lib/security/authorization/matchers.h +211 -0
  217. data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
  218. data/src/core/lib/security/authorization/rbac_policy.h +170 -0
  219. data/src/core/lib/security/context/security_context.cc +4 -2
  220. data/src/core/lib/security/context/security_context.h +1 -1
  221. data/src/core/lib/security/credentials/composite/composite_credentials.cc +5 -5
  222. data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -3
  223. data/src/core/lib/security/credentials/credentials.h +10 -20
  224. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +6 -9
  225. data/src/core/lib/security/credentials/external/external_account_credentials.cc +7 -9
  226. data/src/core/lib/security/credentials/external/external_account_credentials.h +2 -7
  227. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +2 -3
  228. data/src/core/lib/security/credentials/fake/fake_credentials.cc +5 -4
  229. data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
  230. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -5
  231. data/src/core/lib/security/credentials/iam/iam_credentials.cc +16 -19
  232. data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
  233. data/src/core/lib/security/credentials/jwt/json_token.cc +4 -6
  234. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +16 -28
  235. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +8 -8
  236. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +6 -13
  237. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +44 -57
  238. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +13 -15
  239. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -7
  240. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +5 -4
  241. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -10
  242. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +6 -0
  243. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +7 -0
  244. data/src/core/lib/security/credentials/xds/xds_credentials.h +1 -1
  245. data/src/core/lib/security/security_connector/security_connector.cc +0 -4
  246. data/src/core/lib/security/security_connector/security_connector.h +5 -1
  247. data/src/core/lib/security/security_connector/ssl_utils.cc +14 -24
  248. data/src/core/lib/security/security_connector/ssl_utils.h +5 -14
  249. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +2 -3
  250. data/src/core/lib/security/transport/auth_filters.h +7 -0
  251. data/src/core/lib/security/transport/client_auth_filter.cc +53 -33
  252. data/src/core/lib/security/transport/server_auth_filter.cc +40 -35
  253. data/src/core/{ext → lib}/service_config/service_config.cc +2 -2
  254. data/src/core/{ext → lib}/service_config/service_config.h +4 -4
  255. data/src/core/{ext → lib}/service_config/service_config_call_data.h +5 -5
  256. data/src/core/{ext → lib}/service_config/service_config_parser.cc +1 -1
  257. data/src/core/{ext → lib}/service_config/service_config_parser.h +3 -3
  258. data/src/core/lib/slice/slice.cc +3 -1
  259. data/src/core/lib/slice/slice.h +43 -13
  260. data/src/core/lib/slice/slice_intern.cc +3 -101
  261. data/src/core/lib/slice/slice_internal.h +1 -2
  262. data/src/core/lib/slice/slice_refcount.h +4 -13
  263. data/src/core/lib/slice/slice_refcount_base.h +0 -16
  264. data/src/core/lib/surface/call.cc +140 -382
  265. data/src/core/lib/surface/call.h +4 -4
  266. data/src/core/lib/surface/channel.cc +42 -44
  267. data/src/core/lib/surface/channel.h +4 -4
  268. data/src/core/lib/surface/init.cc +0 -2
  269. data/src/core/lib/surface/lame_client.cc +0 -1
  270. data/src/core/lib/surface/server.cc +12 -29
  271. data/src/core/lib/surface/server.h +2 -2
  272. data/src/core/lib/surface/version.cc +2 -2
  273. data/src/core/lib/transport/error_utils.h +14 -0
  274. data/src/core/lib/transport/metadata_batch.h +799 -717
  275. data/src/core/lib/transport/parsed_metadata.cc +2 -0
  276. data/src/core/lib/transport/parsed_metadata.h +95 -92
  277. data/src/core/lib/transport/timeout_encoding.cc +200 -66
  278. data/src/core/lib/transport/timeout_encoding.h +40 -10
  279. data/src/core/lib/transport/transport.h +1 -1
  280. data/src/core/lib/transport/transport_op_string.cc +6 -39
  281. data/src/core/lib/uri/uri_parser.cc +223 -53
  282. data/src/core/lib/uri/uri_parser.h +36 -23
  283. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -3
  284. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
  285. data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
  286. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +3 -5
  287. data/src/core/tsi/ssl_transport_security.cc +53 -13
  288. data/src/core/tsi/ssl_transport_security.h +18 -6
  289. data/src/ruby/ext/grpc/extconf.rb +10 -3
  290. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  291. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  292. data/src/ruby/lib/grpc/version.rb +1 -1
  293. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -1
  294. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
  295. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
  296. data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
  297. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
  298. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
  299. data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
  300. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
  301. data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
  302. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
  303. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
  304. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
  305. data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
  306. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
  307. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
  308. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
  309. data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
  310. data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
  311. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
  312. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
  313. data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
  314. data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
  315. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
  316. data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
  317. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
  318. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
  319. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
  320. data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
  321. data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
  322. data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
  323. data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
  324. data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
  325. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
  326. data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
  327. data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
  328. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
  329. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
  330. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
  331. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
  332. data/third_party/abseil-cpp/absl/random/random.h +189 -0
  333. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
  334. data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
  335. data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
  336. data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
  337. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
  338. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
  339. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
  340. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -0
  341. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +13 -0
  342. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
  343. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
  344. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
  345. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -2
  346. data/third_party/boringssl-with-bazel/src/crypto/mem.c +1 -1
  347. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +29 -0
  348. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
  349. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
  350. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1 -1
  351. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
  352. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +13 -1
  353. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -0
  354. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +1 -1
  355. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +9 -4
  356. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
  357. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +23 -2
  358. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +4 -0
  359. data/third_party/xxhash/xxhash.h +607 -352
  360. metadata +149 -77
  361. data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +0 -107
  362. data/src/core/ext/transport/chttp2/transport/hpack_utils.cc +0 -46
  363. data/src/core/ext/transport/chttp2/transport/popularity_count.h +0 -60
  364. data/src/core/lib/compression/algorithm_metadata.h +0 -62
  365. data/src/core/lib/compression/compression_args.cc +0 -140
  366. data/src/core/lib/compression/compression_args.h +0 -58
  367. data/src/core/lib/compression/stream_compression.cc +0 -81
  368. data/src/core/lib/compression/stream_compression.h +0 -117
  369. data/src/core/lib/compression/stream_compression_gzip.cc +0 -231
  370. data/src/core/lib/compression/stream_compression_gzip.h +0 -28
  371. data/src/core/lib/compression/stream_compression_identity.cc +0 -91
  372. data/src/core/lib/compression/stream_compression_identity.h +0 -29
  373. data/src/core/lib/security/credentials/credentials_metadata.cc +0 -61
  374. data/src/core/lib/slice/static_slice.cc +0 -377
  375. data/src/core/lib/slice/static_slice.h +0 -300
  376. data/src/core/lib/transport/metadata.cc +0 -714
  377. data/src/core/lib/transport/metadata.h +0 -449
  378. data/src/core/lib/transport/metadata_batch.cc +0 -99
  379. data/src/core/lib/transport/static_metadata.cc +0 -1032
  380. data/src/core/lib/transport/static_metadata.h +0 -322
  381. data/src/core/lib/transport/status_metadata.cc +0 -63
  382. data/src/core/lib/transport/status_metadata.h +0 -48
@@ -0,0 +1,244 @@
1
+ // Copyright 2019 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+ //
15
+ #ifndef ABSL_RANDOM_INTERNAL_UNIFORM_HELPER_H_
16
+ #define ABSL_RANDOM_INTERNAL_UNIFORM_HELPER_H_
17
+
18
+ #include <cmath>
19
+ #include <limits>
20
+ #include <type_traits>
21
+
22
+ #include "absl/base/config.h"
23
+ #include "absl/meta/type_traits.h"
24
+ #include "absl/random/internal/traits.h"
25
+
26
+ namespace absl {
27
+ ABSL_NAMESPACE_BEGIN
28
+
29
+ template <typename IntType>
30
+ class uniform_int_distribution;
31
+
32
+ template <typename RealType>
33
+ class uniform_real_distribution;
34
+
35
+ // Interval tag types which specify whether the interval is open or closed
36
+ // on either boundary.
37
+
38
+ namespace random_internal {
39
+ template <typename T>
40
+ struct TagTypeCompare {};
41
+
42
+ template <typename T>
43
+ constexpr bool operator==(TagTypeCompare<T>, TagTypeCompare<T>) {
44
+ // Tags are mono-states. They always compare equal.
45
+ return true;
46
+ }
47
+ template <typename T>
48
+ constexpr bool operator!=(TagTypeCompare<T>, TagTypeCompare<T>) {
49
+ return false;
50
+ }
51
+
52
+ } // namespace random_internal
53
+
54
+ struct IntervalClosedClosedTag
55
+ : public random_internal::TagTypeCompare<IntervalClosedClosedTag> {};
56
+ struct IntervalClosedOpenTag
57
+ : public random_internal::TagTypeCompare<IntervalClosedOpenTag> {};
58
+ struct IntervalOpenClosedTag
59
+ : public random_internal::TagTypeCompare<IntervalOpenClosedTag> {};
60
+ struct IntervalOpenOpenTag
61
+ : public random_internal::TagTypeCompare<IntervalOpenOpenTag> {};
62
+
63
+ namespace random_internal {
64
+
65
+ // In the absence of an explicitly provided return-type, the template
66
+ // "uniform_inferred_return_t<A, B>" is used to derive a suitable type, based on
67
+ // the data-types of the endpoint-arguments {A lo, B hi}.
68
+ //
69
+ // Given endpoints {A lo, B hi}, one of {A, B} will be chosen as the
70
+ // return-type, if one type can be implicitly converted into the other, in a
71
+ // lossless way. The template "is_widening_convertible" implements the
72
+ // compile-time logic for deciding if such a conversion is possible.
73
+ //
74
+ // If no such conversion between {A, B} exists, then the overload for
75
+ // absl::Uniform() will be discarded, and the call will be ill-formed.
76
+ // Return-type for absl::Uniform() when the return-type is inferred.
77
+ template <typename A, typename B>
78
+ using uniform_inferred_return_t =
79
+ absl::enable_if_t<absl::disjunction<is_widening_convertible<A, B>,
80
+ is_widening_convertible<B, A>>::value,
81
+ typename std::conditional<
82
+ is_widening_convertible<A, B>::value, B, A>::type>;
83
+
84
+ // The functions
85
+ // uniform_lower_bound(tag, a, b)
86
+ // and
87
+ // uniform_upper_bound(tag, a, b)
88
+ // are used as implementation-details for absl::Uniform().
89
+ //
90
+ // Conceptually,
91
+ // [a, b] == [uniform_lower_bound(IntervalClosedClosed, a, b),
92
+ // uniform_upper_bound(IntervalClosedClosed, a, b)]
93
+ // (a, b) == [uniform_lower_bound(IntervalOpenOpen, a, b),
94
+ // uniform_upper_bound(IntervalOpenOpen, a, b)]
95
+ // [a, b) == [uniform_lower_bound(IntervalClosedOpen, a, b),
96
+ // uniform_upper_bound(IntervalClosedOpen, a, b)]
97
+ // (a, b] == [uniform_lower_bound(IntervalOpenClosed, a, b),
98
+ // uniform_upper_bound(IntervalOpenClosed, a, b)]
99
+ //
100
+ template <typename IntType, typename Tag>
101
+ typename absl::enable_if_t<
102
+ absl::conjunction<
103
+ std::is_integral<IntType>,
104
+ absl::disjunction<std::is_same<Tag, IntervalOpenClosedTag>,
105
+ std::is_same<Tag, IntervalOpenOpenTag>>>::value,
106
+ IntType>
107
+ uniform_lower_bound(Tag, IntType a, IntType) {
108
+ return a < (std::numeric_limits<IntType>::max)() ? (a + 1) : a;
109
+ }
110
+
111
+ template <typename FloatType, typename Tag>
112
+ typename absl::enable_if_t<
113
+ absl::conjunction<
114
+ std::is_floating_point<FloatType>,
115
+ absl::disjunction<std::is_same<Tag, IntervalOpenClosedTag>,
116
+ std::is_same<Tag, IntervalOpenOpenTag>>>::value,
117
+ FloatType>
118
+ uniform_lower_bound(Tag, FloatType a, FloatType b) {
119
+ return std::nextafter(a, b);
120
+ }
121
+
122
+ template <typename NumType, typename Tag>
123
+ typename absl::enable_if_t<
124
+ absl::disjunction<std::is_same<Tag, IntervalClosedClosedTag>,
125
+ std::is_same<Tag, IntervalClosedOpenTag>>::value,
126
+ NumType>
127
+ uniform_lower_bound(Tag, NumType a, NumType) {
128
+ return a;
129
+ }
130
+
131
+ template <typename IntType, typename Tag>
132
+ typename absl::enable_if_t<
133
+ absl::conjunction<
134
+ std::is_integral<IntType>,
135
+ absl::disjunction<std::is_same<Tag, IntervalClosedOpenTag>,
136
+ std::is_same<Tag, IntervalOpenOpenTag>>>::value,
137
+ IntType>
138
+ uniform_upper_bound(Tag, IntType, IntType b) {
139
+ return b > (std::numeric_limits<IntType>::min)() ? (b - 1) : b;
140
+ }
141
+
142
+ template <typename FloatType, typename Tag>
143
+ typename absl::enable_if_t<
144
+ absl::conjunction<
145
+ std::is_floating_point<FloatType>,
146
+ absl::disjunction<std::is_same<Tag, IntervalClosedOpenTag>,
147
+ std::is_same<Tag, IntervalOpenOpenTag>>>::value,
148
+ FloatType>
149
+ uniform_upper_bound(Tag, FloatType, FloatType b) {
150
+ return b;
151
+ }
152
+
153
+ template <typename IntType, typename Tag>
154
+ typename absl::enable_if_t<
155
+ absl::conjunction<
156
+ std::is_integral<IntType>,
157
+ absl::disjunction<std::is_same<Tag, IntervalClosedClosedTag>,
158
+ std::is_same<Tag, IntervalOpenClosedTag>>>::value,
159
+ IntType>
160
+ uniform_upper_bound(Tag, IntType, IntType b) {
161
+ return b;
162
+ }
163
+
164
+ template <typename FloatType, typename Tag>
165
+ typename absl::enable_if_t<
166
+ absl::conjunction<
167
+ std::is_floating_point<FloatType>,
168
+ absl::disjunction<std::is_same<Tag, IntervalClosedClosedTag>,
169
+ std::is_same<Tag, IntervalOpenClosedTag>>>::value,
170
+ FloatType>
171
+ uniform_upper_bound(Tag, FloatType, FloatType b) {
172
+ return std::nextafter(b, (std::numeric_limits<FloatType>::max)());
173
+ }
174
+
175
+ // Returns whether the bounds are valid for the underlying distribution.
176
+ // Inputs must have already been resolved via uniform_*_bound calls.
177
+ //
178
+ // The c++ standard constraints in [rand.dist.uni.int] are listed as:
179
+ // requires: lo <= hi.
180
+ //
181
+ // In the uniform_int_distrubtion, {lo, hi} are closed, closed. Thus:
182
+ // [0, 0] is legal.
183
+ // [0, 0) is not legal, but [0, 1) is, which translates to [0, 0].
184
+ // (0, 1) is not legal, but (0, 2) is, which translates to [1, 1].
185
+ // (0, 0] is not legal, but (0, 1] is, which translates to [1, 1].
186
+ //
187
+ // The c++ standard constraints in [rand.dist.uni.real] are listed as:
188
+ // requires: lo <= hi.
189
+ // requires: (hi - lo) <= numeric_limits<T>::max()
190
+ //
191
+ // In the uniform_real_distribution, {lo, hi} are closed, open, Thus:
192
+ // [0, 0] is legal, which is [0, 0+epsilon).
193
+ // [0, 0) is legal.
194
+ // (0, 0) is not legal, but (0-epsilon, 0+epsilon) is.
195
+ // (0, 0] is not legal, but (0, 0+epsilon] is.
196
+ //
197
+ template <typename FloatType>
198
+ absl::enable_if_t<std::is_floating_point<FloatType>::value, bool>
199
+ is_uniform_range_valid(FloatType a, FloatType b) {
200
+ return a <= b && std::isfinite(b - a);
201
+ }
202
+
203
+ template <typename IntType>
204
+ absl::enable_if_t<std::is_integral<IntType>::value, bool>
205
+ is_uniform_range_valid(IntType a, IntType b) {
206
+ return a <= b;
207
+ }
208
+
209
+ // UniformDistribution selects either absl::uniform_int_distribution
210
+ // or absl::uniform_real_distribution depending on the NumType parameter.
211
+ template <typename NumType>
212
+ using UniformDistribution =
213
+ typename std::conditional<std::is_integral<NumType>::value,
214
+ absl::uniform_int_distribution<NumType>,
215
+ absl::uniform_real_distribution<NumType>>::type;
216
+
217
+ // UniformDistributionWrapper is used as the underlying distribution type
218
+ // by the absl::Uniform template function. It selects the proper Abseil
219
+ // uniform distribution and provides constructor overloads that match the
220
+ // expected parameter order as well as adjusting distribtuion bounds based
221
+ // on the tag.
222
+ template <typename NumType>
223
+ struct UniformDistributionWrapper : public UniformDistribution<NumType> {
224
+ template <typename TagType>
225
+ explicit UniformDistributionWrapper(TagType, NumType lo, NumType hi)
226
+ : UniformDistribution<NumType>(
227
+ uniform_lower_bound<NumType>(TagType{}, lo, hi),
228
+ uniform_upper_bound<NumType>(TagType{}, lo, hi)) {}
229
+
230
+ explicit UniformDistributionWrapper(NumType lo, NumType hi)
231
+ : UniformDistribution<NumType>(
232
+ uniform_lower_bound<NumType>(IntervalClosedOpenTag(), lo, hi),
233
+ uniform_upper_bound<NumType>(IntervalClosedOpenTag(), lo, hi)) {}
234
+
235
+ explicit UniformDistributionWrapper()
236
+ : UniformDistribution<NumType>(std::numeric_limits<NumType>::lowest(),
237
+ (std::numeric_limits<NumType>::max)()) {}
238
+ };
239
+
240
+ } // namespace random_internal
241
+ ABSL_NAMESPACE_END
242
+ } // namespace absl
243
+
244
+ #endif // ABSL_RANDOM_INTERNAL_UNIFORM_HELPER_H_
@@ -0,0 +1,111 @@
1
+ // Copyright 2017 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef ABSL_RANDOM_INTERNAL_WIDE_MULTIPLY_H_
16
+ #define ABSL_RANDOM_INTERNAL_WIDE_MULTIPLY_H_
17
+
18
+ #include <cstdint>
19
+ #include <limits>
20
+ #include <type_traits>
21
+
22
+ #if (defined(_WIN32) || defined(_WIN64)) && defined(_M_IA64)
23
+ #include <intrin.h> // NOLINT(build/include_order)
24
+ #pragma intrinsic(_umul128)
25
+ #define ABSL_INTERNAL_USE_UMUL128 1
26
+ #endif
27
+
28
+ #include "absl/base/config.h"
29
+ #include "absl/numeric/bits.h"
30
+ #include "absl/numeric/int128.h"
31
+ #include "absl/random/internal/traits.h"
32
+
33
+ namespace absl {
34
+ ABSL_NAMESPACE_BEGIN
35
+ namespace random_internal {
36
+
37
+ // Helper object to multiply two 64-bit values to a 128-bit value.
38
+ // MultiplyU64ToU128 multiplies two 64-bit values to a 128-bit value.
39
+ // If an intrinsic is available, it is used, otherwise use native 32-bit
40
+ // multiplies to construct the result.
41
+ inline absl::uint128 MultiplyU64ToU128(uint64_t a, uint64_t b) {
42
+ #if defined(ABSL_HAVE_INTRINSIC_INT128)
43
+ return absl::uint128(static_cast<__uint128_t>(a) * b);
44
+ #elif defined(ABSL_INTERNAL_USE_UMUL128)
45
+ // uint64_t * uint64_t => uint128 multiply using imul intrinsic on MSVC.
46
+ uint64_t high = 0;
47
+ const uint64_t low = _umul128(a, b, &high);
48
+ return absl::MakeUint128(high, low);
49
+ #else
50
+ // uint128(a) * uint128(b) in emulated mode computes a full 128-bit x 128-bit
51
+ // multiply. However there are many cases where that is not necessary, and it
52
+ // is only necessary to support a 64-bit x 64-bit = 128-bit multiply. This is
53
+ // for those cases.
54
+ const uint64_t a00 = static_cast<uint32_t>(a);
55
+ const uint64_t a32 = a >> 32;
56
+ const uint64_t b00 = static_cast<uint32_t>(b);
57
+ const uint64_t b32 = b >> 32;
58
+
59
+ const uint64_t c00 = a00 * b00;
60
+ const uint64_t c32a = a00 * b32;
61
+ const uint64_t c32b = a32 * b00;
62
+ const uint64_t c64 = a32 * b32;
63
+
64
+ const uint32_t carry =
65
+ static_cast<uint32_t>(((c00 >> 32) + static_cast<uint32_t>(c32a) +
66
+ static_cast<uint32_t>(c32b)) >>
67
+ 32);
68
+
69
+ return absl::MakeUint128(c64 + (c32a >> 32) + (c32b >> 32) + carry,
70
+ c00 + (c32a << 32) + (c32b << 32));
71
+ #endif
72
+ }
73
+
74
+ // wide_multiply<T> multiplies two N-bit values to a 2N-bit result.
75
+ template <typename UIntType>
76
+ struct wide_multiply {
77
+ static constexpr size_t kN = std::numeric_limits<UIntType>::digits;
78
+ using input_type = UIntType;
79
+ using result_type = typename random_internal::unsigned_bits<kN * 2>::type;
80
+
81
+ static result_type multiply(input_type a, input_type b) {
82
+ return static_cast<result_type>(a) * b;
83
+ }
84
+
85
+ static input_type hi(result_type r) { return r >> kN; }
86
+ static input_type lo(result_type r) { return r; }
87
+
88
+ static_assert(std::is_unsigned<UIntType>::value,
89
+ "Class-template wide_multiply<> argument must be unsigned.");
90
+ };
91
+
92
+ #ifndef ABSL_HAVE_INTRINSIC_INT128
93
+ template <>
94
+ struct wide_multiply<uint64_t> {
95
+ using input_type = uint64_t;
96
+ using result_type = absl::uint128;
97
+
98
+ static result_type multiply(uint64_t a, uint64_t b) {
99
+ return MultiplyU64ToU128(a, b);
100
+ }
101
+
102
+ static uint64_t hi(result_type r) { return absl::Uint128High64(r); }
103
+ static uint64_t lo(result_type r) { return absl::Uint128Low64(r); }
104
+ };
105
+ #endif
106
+
107
+ } // namespace random_internal
108
+ ABSL_NAMESPACE_END
109
+ } // namespace absl
110
+
111
+ #endif // ABSL_RANDOM_INTERNAL_WIDE_MULTIPLY_H_
@@ -0,0 +1,257 @@
1
+ // Copyright 2017 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef ABSL_RANDOM_LOG_UNIFORM_INT_DISTRIBUTION_H_
16
+ #define ABSL_RANDOM_LOG_UNIFORM_INT_DISTRIBUTION_H_
17
+
18
+ #include <algorithm>
19
+ #include <cassert>
20
+ #include <cmath>
21
+ #include <istream>
22
+ #include <limits>
23
+ #include <ostream>
24
+ #include <type_traits>
25
+
26
+ #include "absl/numeric/bits.h"
27
+ #include "absl/random/internal/fastmath.h"
28
+ #include "absl/random/internal/generate_real.h"
29
+ #include "absl/random/internal/iostream_state_saver.h"
30
+ #include "absl/random/internal/traits.h"
31
+ #include "absl/random/uniform_int_distribution.h"
32
+
33
+ namespace absl {
34
+ ABSL_NAMESPACE_BEGIN
35
+
36
+ // log_uniform_int_distribution:
37
+ //
38
+ // Returns a random variate R in range [min, max] such that
39
+ // floor(log(R-min, base)) is uniformly distributed.
40
+ // We ensure uniformity by discretization using the
41
+ // boundary sets [0, 1, base, base * base, ... min(base*n, max)]
42
+ //
43
+ template <typename IntType = int>
44
+ class log_uniform_int_distribution {
45
+ private:
46
+ using unsigned_type =
47
+ typename random_internal::make_unsigned_bits<IntType>::type;
48
+
49
+ public:
50
+ using result_type = IntType;
51
+
52
+ class param_type {
53
+ public:
54
+ using distribution_type = log_uniform_int_distribution;
55
+
56
+ explicit param_type(
57
+ result_type min = 0,
58
+ result_type max = (std::numeric_limits<result_type>::max)(),
59
+ result_type base = 2)
60
+ : min_(min),
61
+ max_(max),
62
+ base_(base),
63
+ range_(static_cast<unsigned_type>(max_) -
64
+ static_cast<unsigned_type>(min_)),
65
+ log_range_(0) {
66
+ assert(max_ >= min_);
67
+ assert(base_ > 1);
68
+
69
+ if (base_ == 2) {
70
+ // Determine where the first set bit is on range(), giving a log2(range)
71
+ // value which can be used to construct bounds.
72
+ log_range_ =
73
+ (std::min)(bit_width(range()),
74
+ static_cast<unsigned_type>(
75
+ std::numeric_limits<unsigned_type>::digits));
76
+ } else {
77
+ // NOTE: Computing the logN(x) introduces error from 2 sources:
78
+ // 1. Conversion of int to double loses precision for values >=
79
+ // 2^53, which may cause some log() computations to operate on
80
+ // different values.
81
+ // 2. The error introduced by the division will cause the result
82
+ // to differ from the expected value.
83
+ //
84
+ // Thus a result which should equal K may equal K +/- epsilon,
85
+ // which can eliminate some values depending on where the bounds fall.
86
+ const double inv_log_base = 1.0 / std::log(base_);
87
+ const double log_range = std::log(static_cast<double>(range()) + 0.5);
88
+ log_range_ = static_cast<int>(std::ceil(inv_log_base * log_range));
89
+ }
90
+ }
91
+
92
+ result_type(min)() const { return min_; }
93
+ result_type(max)() const { return max_; }
94
+ result_type base() const { return base_; }
95
+
96
+ friend bool operator==(const param_type& a, const param_type& b) {
97
+ return a.min_ == b.min_ && a.max_ == b.max_ && a.base_ == b.base_;
98
+ }
99
+
100
+ friend bool operator!=(const param_type& a, const param_type& b) {
101
+ return !(a == b);
102
+ }
103
+
104
+ private:
105
+ friend class log_uniform_int_distribution;
106
+
107
+ int log_range() const { return log_range_; }
108
+ unsigned_type range() const { return range_; }
109
+
110
+ result_type min_;
111
+ result_type max_;
112
+ result_type base_;
113
+ unsigned_type range_; // max - min
114
+ int log_range_; // ceil(logN(range_))
115
+
116
+ static_assert(std::is_integral<IntType>::value,
117
+ "Class-template absl::log_uniform_int_distribution<> must be "
118
+ "parameterized using an integral type.");
119
+ };
120
+
121
+ log_uniform_int_distribution() : log_uniform_int_distribution(0) {}
122
+
123
+ explicit log_uniform_int_distribution(
124
+ result_type min,
125
+ result_type max = (std::numeric_limits<result_type>::max)(),
126
+ result_type base = 2)
127
+ : param_(min, max, base) {}
128
+
129
+ explicit log_uniform_int_distribution(const param_type& p) : param_(p) {}
130
+
131
+ void reset() {}
132
+
133
+ // generating functions
134
+ template <typename URBG>
135
+ result_type operator()(URBG& g) { // NOLINT(runtime/references)
136
+ return (*this)(g, param_);
137
+ }
138
+
139
+ template <typename URBG>
140
+ result_type operator()(URBG& g, // NOLINT(runtime/references)
141
+ const param_type& p) {
142
+ return (p.min)() + Generate(g, p);
143
+ }
144
+
145
+ result_type(min)() const { return (param_.min)(); }
146
+ result_type(max)() const { return (param_.max)(); }
147
+ result_type base() const { return param_.base(); }
148
+
149
+ param_type param() const { return param_; }
150
+ void param(const param_type& p) { param_ = p; }
151
+
152
+ friend bool operator==(const log_uniform_int_distribution& a,
153
+ const log_uniform_int_distribution& b) {
154
+ return a.param_ == b.param_;
155
+ }
156
+ friend bool operator!=(const log_uniform_int_distribution& a,
157
+ const log_uniform_int_distribution& b) {
158
+ return a.param_ != b.param_;
159
+ }
160
+
161
+ private:
162
+ // Returns a log-uniform variate in the range [0, p.range()]. The caller
163
+ // should add min() to shift the result to the correct range.
164
+ template <typename URNG>
165
+ unsigned_type Generate(URNG& g, // NOLINT(runtime/references)
166
+ const param_type& p);
167
+
168
+ param_type param_;
169
+ };
170
+
171
+ template <typename IntType>
172
+ template <typename URBG>
173
+ typename log_uniform_int_distribution<IntType>::unsigned_type
174
+ log_uniform_int_distribution<IntType>::Generate(
175
+ URBG& g, // NOLINT(runtime/references)
176
+ const param_type& p) {
177
+ // sample e over [0, log_range]. Map the results of e to this:
178
+ // 0 => 0
179
+ // 1 => [1, b-1]
180
+ // 2 => [b, (b^2)-1]
181
+ // n => [b^(n-1)..(b^n)-1]
182
+ const int e = absl::uniform_int_distribution<int>(0, p.log_range())(g);
183
+ if (e == 0) {
184
+ return 0;
185
+ }
186
+ const int d = e - 1;
187
+
188
+ unsigned_type base_e, top_e;
189
+ if (p.base() == 2) {
190
+ base_e = static_cast<unsigned_type>(1) << d;
191
+
192
+ top_e = (e >= std::numeric_limits<unsigned_type>::digits)
193
+ ? (std::numeric_limits<unsigned_type>::max)()
194
+ : (static_cast<unsigned_type>(1) << e) - 1;
195
+ } else {
196
+ const double r = std::pow(p.base(), d);
197
+ const double s = (r * p.base()) - 1.0;
198
+
199
+ base_e =
200
+ (r > static_cast<double>((std::numeric_limits<unsigned_type>::max)()))
201
+ ? (std::numeric_limits<unsigned_type>::max)()
202
+ : static_cast<unsigned_type>(r);
203
+
204
+ top_e =
205
+ (s > static_cast<double>((std::numeric_limits<unsigned_type>::max)()))
206
+ ? (std::numeric_limits<unsigned_type>::max)()
207
+ : static_cast<unsigned_type>(s);
208
+ }
209
+
210
+ const unsigned_type lo = (base_e >= p.range()) ? p.range() : base_e;
211
+ const unsigned_type hi = (top_e >= p.range()) ? p.range() : top_e;
212
+
213
+ // choose uniformly over [lo, hi]
214
+ return absl::uniform_int_distribution<result_type>(lo, hi)(g);
215
+ }
216
+
217
+ template <typename CharT, typename Traits, typename IntType>
218
+ std::basic_ostream<CharT, Traits>& operator<<(
219
+ std::basic_ostream<CharT, Traits>& os, // NOLINT(runtime/references)
220
+ const log_uniform_int_distribution<IntType>& x) {
221
+ using stream_type =
222
+ typename random_internal::stream_format_type<IntType>::type;
223
+ auto saver = random_internal::make_ostream_state_saver(os);
224
+ os << static_cast<stream_type>((x.min)()) << os.fill()
225
+ << static_cast<stream_type>((x.max)()) << os.fill()
226
+ << static_cast<stream_type>(x.base());
227
+ return os;
228
+ }
229
+
230
+ template <typename CharT, typename Traits, typename IntType>
231
+ std::basic_istream<CharT, Traits>& operator>>(
232
+ std::basic_istream<CharT, Traits>& is, // NOLINT(runtime/references)
233
+ log_uniform_int_distribution<IntType>& x) { // NOLINT(runtime/references)
234
+ using param_type = typename log_uniform_int_distribution<IntType>::param_type;
235
+ using result_type =
236
+ typename log_uniform_int_distribution<IntType>::result_type;
237
+ using stream_type =
238
+ typename random_internal::stream_format_type<IntType>::type;
239
+
240
+ stream_type min;
241
+ stream_type max;
242
+ stream_type base;
243
+
244
+ auto saver = random_internal::make_istream_state_saver(is);
245
+ is >> min >> max >> base;
246
+ if (!is.fail()) {
247
+ x.param(param_type(static_cast<result_type>(min),
248
+ static_cast<result_type>(max),
249
+ static_cast<result_type>(base)));
250
+ }
251
+ return is;
252
+ }
253
+
254
+ ABSL_NAMESPACE_END
255
+ } // namespace absl
256
+
257
+ #endif // ABSL_RANDOM_LOG_UNIFORM_INT_DISTRIBUTION_H_