grpc 1.23.1 → 1.24.0.pre1

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 (245) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +757 -477
  3. data/include/grpc/grpc.h +3 -1
  4. data/include/grpc/grpc_security.h +20 -4
  5. data/include/grpc/impl/codegen/grpc_types.h +6 -5
  6. data/include/grpc/impl/codegen/port_platform.h +25 -0
  7. data/src/core/ext/filters/client_channel/backend_metric.cc +78 -0
  8. data/src/core/ext/filters/client_channel/backend_metric.h +36 -0
  9. data/src/core/ext/filters/client_channel/channel_connectivity.cc +16 -2
  10. data/src/core/ext/filters/client_channel/client_channel.cc +325 -267
  11. data/src/core/ext/filters/client_channel/client_channel_factory.h +0 -4
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +23 -32
  13. data/src/core/ext/filters/client_channel/http_proxy.cc +7 -3
  14. data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
  15. data/src/core/ext/filters/client_channel/lb_policy.h +58 -34
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +46 -50
  17. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +9 -2
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +35 -17
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +130 -215
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +34 -21
  21. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +1120 -802
  22. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h +8 -2
  23. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc +33 -12
  24. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.cc +151 -40
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h +184 -26
  26. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc +389 -245
  27. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +98 -60
  28. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +6 -1
  29. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +89 -0
  30. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +3 -8
  31. data/src/core/ext/filters/client_channel/server_address.cc +1 -3
  32. data/src/core/ext/filters/client_channel/server_address.h +1 -1
  33. data/src/core/ext/filters/client_channel/subchannel.h +2 -1
  34. data/src/core/ext/filters/client_idle/client_idle_filter.cc +207 -29
  35. data/src/core/ext/filters/http/client/http_client_filter.cc +10 -8
  36. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  37. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +10 -7
  38. data/src/core/ext/filters/http/server/http_server_filter.cc +52 -26
  39. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +23 -20
  40. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +24 -21
  41. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1 -1
  42. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +37 -24
  43. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
  44. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +237 -191
  45. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +29 -27
  46. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -1
  47. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +19 -4
  48. data/src/core/ext/transport/chttp2/transport/hpack_table.h +13 -4
  49. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +2 -1
  50. data/src/core/ext/transport/chttp2/transport/internal.h +0 -2
  51. data/src/core/ext/transport/chttp2/transport/parsing.cc +99 -71
  52. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +222 -0
  53. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +818 -0
  54. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +314 -0
  55. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +1142 -0
  56. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +53 -0
  57. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +158 -0
  58. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +34 -0
  59. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +69 -0
  60. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +49 -0
  61. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +240 -0
  62. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +110 -0
  63. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +324 -0
  64. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +235 -0
  65. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +661 -0
  66. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +84 -0
  67. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +274 -0
  68. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +175 -0
  69. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +572 -0
  70. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +150 -0
  71. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +596 -0
  72. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +35 -0
  73. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +80 -0
  74. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +95 -0
  75. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +308 -0
  76. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +128 -0
  77. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +392 -0
  78. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +91 -0
  79. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +236 -0
  80. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +88 -0
  81. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +258 -0
  82. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +111 -0
  83. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +324 -0
  84. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +23 -0
  85. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +50 -0
  86. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +52 -0
  87. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +130 -0
  88. data/src/core/ext/upb-generated/envoy/type/percent.upb.c +39 -0
  89. data/src/core/ext/upb-generated/envoy/type/percent.upb.h +87 -0
  90. data/src/core/ext/upb-generated/envoy/type/range.upb.c +39 -0
  91. data/src/core/ext/upb-generated/envoy/type/range.upb.h +85 -0
  92. data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +17 -0
  93. data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +30 -0
  94. data/src/core/ext/upb-generated/google/api/annotations.upb.c +18 -0
  95. data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -0
  96. data/src/core/ext/upb-generated/google/api/http.upb.c +66 -0
  97. data/src/core/ext/upb-generated/google/api/http.upb.h +190 -0
  98. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +27 -0
  99. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +58 -0
  100. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +485 -0
  101. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1690 -0
  102. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +27 -0
  103. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +58 -0
  104. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +22 -0
  105. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +50 -0
  106. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +79 -0
  107. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +215 -0
  108. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +27 -0
  109. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +58 -0
  110. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +106 -0
  111. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +238 -0
  112. data/src/core/ext/upb-generated/google/rpc/status.upb.c +33 -0
  113. data/src/core/ext/upb-generated/google/rpc/status.upb.h +74 -0
  114. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +49 -0
  115. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +126 -0
  116. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +209 -0
  117. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +681 -0
  118. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +42 -0
  119. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +109 -0
  120. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +36 -0
  121. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +84 -0
  122. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +133 -0
  123. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +359 -0
  124. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +58 -0
  125. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +144 -0
  126. data/src/core/ext/upb-generated/validate/validate.upb.c +443 -0
  127. data/src/core/ext/upb-generated/validate/validate.upb.h +2037 -0
  128. data/src/core/lib/channel/channel_args.cc +21 -0
  129. data/src/core/lib/channel/channel_args.h +16 -2
  130. data/src/core/lib/channel/channel_stack.h +2 -1
  131. data/src/core/lib/channel/channelz.cc +54 -56
  132. data/src/core/lib/channel/channelz.h +29 -12
  133. data/src/core/lib/compression/compression.cc +2 -1
  134. data/src/core/lib/compression/compression_internal.h +8 -0
  135. data/src/core/lib/gpr/log_linux.cc +2 -2
  136. data/src/core/lib/gpr/log_posix.cc +2 -2
  137. data/src/core/lib/gpr/time_precise.cc +123 -36
  138. data/src/core/lib/gpr/time_precise.h +37 -0
  139. data/src/core/lib/gprpp/abstract.h +10 -0
  140. data/src/core/lib/gprpp/atomic.h +4 -0
  141. data/src/core/lib/gprpp/inlined_vector.h +20 -4
  142. data/src/core/lib/gprpp/map.h +109 -6
  143. data/src/core/lib/gprpp/memory.h +6 -0
  144. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -0
  145. data/src/core/lib/iomgr/ev_epollex_linux.cc +29 -54
  146. data/src/core/lib/iomgr/exec_ctx.cc +27 -17
  147. data/src/core/lib/iomgr/exec_ctx.h +3 -0
  148. data/src/core/lib/iomgr/sockaddr_utils.cc +1 -3
  149. data/src/core/lib/iomgr/tcp_posix.cc +16 -25
  150. data/src/core/lib/iomgr/tcp_server_custom.cc +1 -1
  151. data/src/core/lib/iomgr/timer_manager.cc +8 -1
  152. data/src/core/lib/iomgr/timer_manager.h +2 -0
  153. data/src/core/lib/security/credentials/credentials.h +8 -2
  154. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -0
  155. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +3 -0
  156. data/src/core/lib/security/credentials/tls/spiffe_credentials.cc +3 -3
  157. data/src/core/lib/security/security_connector/ssl_utils.cc +1 -12
  158. data/src/core/lib/security/security_connector/ssl_utils.h +10 -6
  159. data/src/core/lib/security/security_connector/ssl_utils_config.cc +32 -0
  160. data/src/core/lib/security/security_connector/ssl_utils_config.h +30 -0
  161. data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +161 -49
  162. data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +34 -1
  163. data/src/core/lib/slice/slice_intern.cc +17 -9
  164. data/src/core/lib/slice/slice_internal.h +34 -7
  165. data/src/core/lib/slice/slice_utils.h +7 -3
  166. data/src/core/lib/surface/call.cc +97 -57
  167. data/src/core/lib/surface/channel.cc +2 -2
  168. data/src/core/lib/surface/completion_queue.cc +10 -16
  169. data/src/core/lib/surface/init.cc +3 -0
  170. data/src/core/lib/surface/server.cc +11 -14
  171. data/src/core/lib/surface/validate_metadata.cc +4 -0
  172. data/src/core/lib/surface/version.cc +2 -2
  173. data/src/core/lib/transport/metadata.cc +4 -4
  174. data/src/core/lib/transport/metadata_batch.cc +72 -16
  175. data/src/core/lib/transport/metadata_batch.h +38 -0
  176. data/src/core/lib/transport/static_metadata.cc +814 -1023
  177. data/src/core/lib/transport/static_metadata.h +271 -213
  178. data/src/core/lib/transport/transport.h +12 -0
  179. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
  180. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +104 -76
  181. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +34 -16
  182. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +2 -2
  183. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +10 -6
  184. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +4 -3
  185. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +74 -48
  186. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +34 -26
  187. data/src/core/tsi/ssl_transport_security.cc +14 -6
  188. data/src/core/tsi/ssl_transport_security.h +4 -0
  189. data/src/ruby/ext/grpc/ext-export.clang +1 -0
  190. data/src/ruby/ext/grpc/ext-export.gcc +6 -0
  191. data/src/ruby/ext/grpc/extconf.rb +5 -0
  192. data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
  193. data/src/ruby/ext/grpc/rb_grpc.c +1 -42
  194. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
  195. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
  196. data/src/ruby/lib/grpc.rb +2 -0
  197. data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
  198. data/src/ruby/lib/grpc/errors.rb +4 -7
  199. data/src/ruby/lib/grpc/google_rpc_status_utils.rb +9 -4
  200. data/src/ruby/lib/grpc/structs.rb +15 -0
  201. data/src/ruby/lib/grpc/version.rb +1 -1
  202. data/src/ruby/spec/errors_spec.rb +1 -0
  203. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
  204. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +34 -0
  205. data/src/ruby/spec/pb/codegen/package_option_spec.rb +53 -29
  206. data/third_party/upb/upb/decode.c +604 -0
  207. data/third_party/upb/upb/decode.h +21 -0
  208. data/third_party/upb/upb/encode.c +378 -0
  209. data/third_party/upb/upb/encode.h +21 -0
  210. data/third_party/upb/upb/generated_util.h +105 -0
  211. data/third_party/upb/upb/msg.c +111 -0
  212. data/third_party/upb/upb/msg.h +69 -0
  213. data/third_party/upb/upb/port.c +27 -0
  214. data/third_party/upb/upb/port_def.inc +152 -0
  215. data/third_party/upb/upb/port_undef.inc +21 -0
  216. data/third_party/upb/upb/table.c +911 -0
  217. data/third_party/upb/upb/table.int.h +507 -0
  218. data/third_party/upb/upb/upb.c +261 -0
  219. data/third_party/upb/upb/upb.h +364 -0
  220. metadata +134 -55
  221. data/src/core/ext/filters/client_channel/health/health.pb.c +0 -23
  222. data/src/core/ext/filters/client_channel/health/health.pb.h +0 -73
  223. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c +0 -19
  224. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h +0 -54
  225. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c +0 -19
  226. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h +0 -54
  227. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +0 -89
  228. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +0 -164
  229. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc +0 -520
  230. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.h +0 -323
  231. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc +0 -145
  232. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +0 -149
  233. data/src/core/tsi/alts/handshaker/altscontext.pb.c +0 -47
  234. data/src/core/tsi/alts/handshaker/altscontext.pb.h +0 -63
  235. data/src/core/tsi/alts/handshaker/handshaker.pb.c +0 -122
  236. data/src/core/tsi/alts/handshaker/handshaker.pb.h +0 -254
  237. data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +0 -49
  238. data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +0 -78
  239. data/third_party/nanopb/pb.h +0 -579
  240. data/third_party/nanopb/pb_common.c +0 -97
  241. data/third_party/nanopb/pb_common.h +0 -42
  242. data/third_party/nanopb/pb_decode.c +0 -1347
  243. data/third_party/nanopb/pb_decode.h +0 -149
  244. data/third_party/nanopb/pb_encode.c +0 -696
  245. data/third_party/nanopb/pb_encode.h +0 -154
@@ -0,0 +1,507 @@
1
+ /*
2
+ ** upb_table
3
+ **
4
+ ** This header is INTERNAL-ONLY! Its interfaces are not public or stable!
5
+ ** This file defines very fast int->upb_value (inttable) and string->upb_value
6
+ ** (strtable) hash tables.
7
+ **
8
+ ** The table uses chained scatter with Brent's variation (inspired by the Lua
9
+ ** implementation of hash tables). The hash function for strings is Austin
10
+ ** Appleby's "MurmurHash."
11
+ **
12
+ ** The inttable uses uintptr_t as its key, which guarantees it can be used to
13
+ ** store pointers or integers of at least 32 bits (upb isn't really useful on
14
+ ** systems where sizeof(void*) < 4).
15
+ **
16
+ ** The table must be homogenous (all values of the same type). In debug
17
+ ** mode, we check this on insert and lookup.
18
+ */
19
+
20
+ #ifndef UPB_TABLE_H_
21
+ #define UPB_TABLE_H_
22
+
23
+ #include <stdint.h>
24
+ #include <string.h>
25
+ #include "upb/upb.h"
26
+
27
+ #include "upb/port_def.inc"
28
+
29
+ #ifdef __cplusplus
30
+ extern "C" {
31
+ #endif
32
+
33
+
34
+ /* upb_value ******************************************************************/
35
+
36
+ /* A tagged union (stored untagged inside the table) so that we can check that
37
+ * clients calling table accessors are correctly typed without having to have
38
+ * an explosion of accessors. */
39
+ typedef enum {
40
+ UPB_CTYPE_INT32 = 1,
41
+ UPB_CTYPE_INT64 = 2,
42
+ UPB_CTYPE_UINT32 = 3,
43
+ UPB_CTYPE_UINT64 = 4,
44
+ UPB_CTYPE_BOOL = 5,
45
+ UPB_CTYPE_CSTR = 6,
46
+ UPB_CTYPE_PTR = 7,
47
+ UPB_CTYPE_CONSTPTR = 8,
48
+ UPB_CTYPE_FPTR = 9,
49
+ UPB_CTYPE_FLOAT = 10,
50
+ UPB_CTYPE_DOUBLE = 11
51
+ } upb_ctype_t;
52
+
53
+ typedef struct {
54
+ uint64_t val;
55
+ #ifndef NDEBUG
56
+ /* In debug mode we carry the value type around also so we can check accesses
57
+ * to be sure the right member is being read. */
58
+ upb_ctype_t ctype;
59
+ #endif
60
+ } upb_value;
61
+
62
+ #ifdef NDEBUG
63
+ #define SET_TYPE(dest, val) UPB_UNUSED(val)
64
+ #else
65
+ #define SET_TYPE(dest, val) dest = val
66
+ #endif
67
+
68
+ /* Like strdup(), which isn't always available since it's not ANSI C. */
69
+ char *upb_strdup(const char *s, upb_alloc *a);
70
+ /* Variant that works with a length-delimited rather than NULL-delimited string,
71
+ * as supported by strtable. */
72
+ char *upb_strdup2(const char *s, size_t len, upb_alloc *a);
73
+
74
+ UPB_INLINE char *upb_gstrdup(const char *s) {
75
+ return upb_strdup(s, &upb_alloc_global);
76
+ }
77
+
78
+ UPB_INLINE void _upb_value_setval(upb_value *v, uint64_t val,
79
+ upb_ctype_t ctype) {
80
+ v->val = val;
81
+ SET_TYPE(v->ctype, ctype);
82
+ }
83
+
84
+ UPB_INLINE upb_value _upb_value_val(uint64_t val, upb_ctype_t ctype) {
85
+ upb_value ret;
86
+ _upb_value_setval(&ret, val, ctype);
87
+ return ret;
88
+ }
89
+
90
+ /* For each value ctype, define the following set of functions:
91
+ *
92
+ * // Get/set an int32 from a upb_value.
93
+ * int32_t upb_value_getint32(upb_value val);
94
+ * void upb_value_setint32(upb_value *val, int32_t cval);
95
+ *
96
+ * // Construct a new upb_value from an int32.
97
+ * upb_value upb_value_int32(int32_t val); */
98
+ #define FUNCS(name, membername, type_t, converter, proto_type) \
99
+ UPB_INLINE void upb_value_set ## name(upb_value *val, type_t cval) { \
100
+ val->val = (converter)cval; \
101
+ SET_TYPE(val->ctype, proto_type); \
102
+ } \
103
+ UPB_INLINE upb_value upb_value_ ## name(type_t val) { \
104
+ upb_value ret; \
105
+ upb_value_set ## name(&ret, val); \
106
+ return ret; \
107
+ } \
108
+ UPB_INLINE type_t upb_value_get ## name(upb_value val) { \
109
+ UPB_ASSERT_DEBUGVAR(val.ctype == proto_type); \
110
+ return (type_t)(converter)val.val; \
111
+ }
112
+
113
+ FUNCS(int32, int32, int32_t, int32_t, UPB_CTYPE_INT32)
114
+ FUNCS(int64, int64, int64_t, int64_t, UPB_CTYPE_INT64)
115
+ FUNCS(uint32, uint32, uint32_t, uint32_t, UPB_CTYPE_UINT32)
116
+ FUNCS(uint64, uint64, uint64_t, uint64_t, UPB_CTYPE_UINT64)
117
+ FUNCS(bool, _bool, bool, bool, UPB_CTYPE_BOOL)
118
+ FUNCS(cstr, cstr, char*, uintptr_t, UPB_CTYPE_CSTR)
119
+ FUNCS(ptr, ptr, void*, uintptr_t, UPB_CTYPE_PTR)
120
+ FUNCS(constptr, constptr, const void*, uintptr_t, UPB_CTYPE_CONSTPTR)
121
+ FUNCS(fptr, fptr, upb_func*, uintptr_t, UPB_CTYPE_FPTR)
122
+
123
+ #undef FUNCS
124
+
125
+ UPB_INLINE void upb_value_setfloat(upb_value *val, float cval) {
126
+ memcpy(&val->val, &cval, sizeof(cval));
127
+ SET_TYPE(val->ctype, UPB_CTYPE_FLOAT);
128
+ }
129
+
130
+ UPB_INLINE void upb_value_setdouble(upb_value *val, double cval) {
131
+ memcpy(&val->val, &cval, sizeof(cval));
132
+ SET_TYPE(val->ctype, UPB_CTYPE_DOUBLE);
133
+ }
134
+
135
+ UPB_INLINE upb_value upb_value_float(float cval) {
136
+ upb_value ret;
137
+ upb_value_setfloat(&ret, cval);
138
+ return ret;
139
+ }
140
+
141
+ UPB_INLINE upb_value upb_value_double(double cval) {
142
+ upb_value ret;
143
+ upb_value_setdouble(&ret, cval);
144
+ return ret;
145
+ }
146
+
147
+ #undef SET_TYPE
148
+
149
+
150
+ /* upb_tabkey *****************************************************************/
151
+
152
+ /* Either:
153
+ * 1. an actual integer key, or
154
+ * 2. a pointer to a string prefixed by its uint32_t length, owned by us.
155
+ *
156
+ * ...depending on whether this is a string table or an int table. We would
157
+ * make this a union of those two types, but C89 doesn't support statically
158
+ * initializing a non-first union member. */
159
+ typedef uintptr_t upb_tabkey;
160
+
161
+ UPB_INLINE char *upb_tabstr(upb_tabkey key, uint32_t *len) {
162
+ char* mem = (char*)key;
163
+ if (len) memcpy(len, mem, sizeof(*len));
164
+ return mem + sizeof(*len);
165
+ }
166
+
167
+
168
+ /* upb_tabval *****************************************************************/
169
+
170
+ typedef struct {
171
+ uint64_t val;
172
+ } upb_tabval;
173
+
174
+ #define UPB_TABVALUE_EMPTY_INIT {-1}
175
+
176
+
177
+ /* upb_table ******************************************************************/
178
+
179
+ typedef struct _upb_tabent {
180
+ upb_tabkey key;
181
+ upb_tabval val;
182
+
183
+ /* Internal chaining. This is const so we can create static initializers for
184
+ * tables. We cast away const sometimes, but *only* when the containing
185
+ * upb_table is known to be non-const. This requires a bit of care, but
186
+ * the subtlety is confined to table.c. */
187
+ const struct _upb_tabent *next;
188
+ } upb_tabent;
189
+
190
+ typedef struct {
191
+ size_t count; /* Number of entries in the hash part. */
192
+ size_t mask; /* Mask to turn hash value -> bucket. */
193
+ upb_ctype_t ctype; /* Type of all values. */
194
+ uint8_t size_lg2; /* Size of the hashtable part is 2^size_lg2 entries. */
195
+
196
+ /* Hash table entries.
197
+ * Making this const isn't entirely accurate; what we really want is for it to
198
+ * have the same const-ness as the table it's inside. But there's no way to
199
+ * declare that in C. So we have to make it const so that we can statically
200
+ * initialize const hash tables. Then we cast away const when we have to.
201
+ */
202
+ const upb_tabent *entries;
203
+
204
+ #ifndef NDEBUG
205
+ /* This table's allocator. We make the user pass it in to every relevant
206
+ * function and only use this to check it in debug mode. We do this solely
207
+ * to keep upb_table as small as possible. This might seem slightly paranoid
208
+ * but the plan is to use upb_table for all map fields and extension sets in
209
+ * a forthcoming message representation, so there could be a lot of these.
210
+ * If this turns out to be too annoying later, we can change it (since this
211
+ * is an internal-only header file). */
212
+ upb_alloc *alloc;
213
+ #endif
214
+ } upb_table;
215
+
216
+ typedef struct {
217
+ upb_table t;
218
+ } upb_strtable;
219
+
220
+ typedef struct {
221
+ upb_table t; /* For entries that don't fit in the array part. */
222
+ const upb_tabval *array; /* Array part of the table. See const note above. */
223
+ size_t array_size; /* Array part size. */
224
+ size_t array_count; /* Array part number of elements. */
225
+ } upb_inttable;
226
+
227
+ #define UPB_INTTABLE_INIT(count, mask, ctype, size_lg2, ent, a, asize, acount) \
228
+ {UPB_TABLE_INIT(count, mask, ctype, size_lg2, ent), a, asize, acount}
229
+
230
+ #define UPB_EMPTY_INTTABLE_INIT(ctype) \
231
+ UPB_INTTABLE_INIT(0, 0, ctype, 0, NULL, NULL, 0, 0)
232
+
233
+ #define UPB_ARRAY_EMPTYENT -1
234
+
235
+ UPB_INLINE size_t upb_table_size(const upb_table *t) {
236
+ if (t->size_lg2 == 0)
237
+ return 0;
238
+ else
239
+ return 1 << t->size_lg2;
240
+ }
241
+
242
+ /* Internal-only functions, in .h file only out of necessity. */
243
+ UPB_INLINE bool upb_tabent_isempty(const upb_tabent *e) {
244
+ return e->key == 0;
245
+ }
246
+
247
+ /* Used by some of the unit tests for generic hashing functionality. */
248
+ uint32_t upb_murmur_hash2(const void * key, size_t len, uint32_t seed);
249
+
250
+ UPB_INLINE uintptr_t upb_intkey(uintptr_t key) {
251
+ return key;
252
+ }
253
+
254
+ UPB_INLINE uint32_t upb_inthash(uintptr_t key) {
255
+ return (uint32_t)key;
256
+ }
257
+
258
+ static const upb_tabent *upb_getentry(const upb_table *t, uint32_t hash) {
259
+ return t->entries + (hash & t->mask);
260
+ }
261
+
262
+ UPB_INLINE bool upb_arrhas(upb_tabval key) {
263
+ return key.val != (uint64_t)-1;
264
+ }
265
+
266
+ /* Initialize and uninitialize a table, respectively. If memory allocation
267
+ * failed, false is returned that the table is uninitialized. */
268
+ bool upb_inttable_init2(upb_inttable *table, upb_ctype_t ctype, upb_alloc *a);
269
+ bool upb_strtable_init2(upb_strtable *table, upb_ctype_t ctype, upb_alloc *a);
270
+ void upb_inttable_uninit2(upb_inttable *table, upb_alloc *a);
271
+ void upb_strtable_uninit2(upb_strtable *table, upb_alloc *a);
272
+
273
+ UPB_INLINE bool upb_inttable_init(upb_inttable *table, upb_ctype_t ctype) {
274
+ return upb_inttable_init2(table, ctype, &upb_alloc_global);
275
+ }
276
+
277
+ UPB_INLINE bool upb_strtable_init(upb_strtable *table, upb_ctype_t ctype) {
278
+ return upb_strtable_init2(table, ctype, &upb_alloc_global);
279
+ }
280
+
281
+ UPB_INLINE void upb_inttable_uninit(upb_inttable *table) {
282
+ upb_inttable_uninit2(table, &upb_alloc_global);
283
+ }
284
+
285
+ UPB_INLINE void upb_strtable_uninit(upb_strtable *table) {
286
+ upb_strtable_uninit2(table, &upb_alloc_global);
287
+ }
288
+
289
+ /* Returns the number of values in the table. */
290
+ size_t upb_inttable_count(const upb_inttable *t);
291
+ UPB_INLINE size_t upb_strtable_count(const upb_strtable *t) {
292
+ return t->t.count;
293
+ }
294
+
295
+ void upb_inttable_packedsize(const upb_inttable *t, size_t *size);
296
+ void upb_strtable_packedsize(const upb_strtable *t, size_t *size);
297
+ upb_inttable *upb_inttable_pack(const upb_inttable *t, void *p, size_t *ofs,
298
+ size_t size);
299
+ upb_strtable *upb_strtable_pack(const upb_strtable *t, void *p, size_t *ofs,
300
+ size_t size);
301
+
302
+ /* Inserts the given key into the hashtable with the given value. The key must
303
+ * not already exist in the hash table. For string tables, the key must be
304
+ * NULL-terminated, and the table will make an internal copy of the key.
305
+ * Inttables must not insert a value of UINTPTR_MAX.
306
+ *
307
+ * If a table resize was required but memory allocation failed, false is
308
+ * returned and the table is unchanged. */
309
+ bool upb_inttable_insert2(upb_inttable *t, uintptr_t key, upb_value val,
310
+ upb_alloc *a);
311
+ bool upb_strtable_insert3(upb_strtable *t, const char *key, size_t len,
312
+ upb_value val, upb_alloc *a);
313
+
314
+ UPB_INLINE bool upb_inttable_insert(upb_inttable *t, uintptr_t key,
315
+ upb_value val) {
316
+ return upb_inttable_insert2(t, key, val, &upb_alloc_global);
317
+ }
318
+
319
+ UPB_INLINE bool upb_strtable_insert2(upb_strtable *t, const char *key,
320
+ size_t len, upb_value val) {
321
+ return upb_strtable_insert3(t, key, len, val, &upb_alloc_global);
322
+ }
323
+
324
+ /* For NULL-terminated strings. */
325
+ UPB_INLINE bool upb_strtable_insert(upb_strtable *t, const char *key,
326
+ upb_value val) {
327
+ return upb_strtable_insert2(t, key, strlen(key), val);
328
+ }
329
+
330
+ /* Looks up key in this table, returning "true" if the key was found.
331
+ * If v is non-NULL, copies the value for this key into *v. */
332
+ bool upb_inttable_lookup(const upb_inttable *t, uintptr_t key, upb_value *v);
333
+ bool upb_strtable_lookup2(const upb_strtable *t, const char *key, size_t len,
334
+ upb_value *v);
335
+
336
+ /* For NULL-terminated strings. */
337
+ UPB_INLINE bool upb_strtable_lookup(const upb_strtable *t, const char *key,
338
+ upb_value *v) {
339
+ return upb_strtable_lookup2(t, key, strlen(key), v);
340
+ }
341
+
342
+ /* Removes an item from the table. Returns true if the remove was successful,
343
+ * and stores the removed item in *val if non-NULL. */
344
+ bool upb_inttable_remove(upb_inttable *t, uintptr_t key, upb_value *val);
345
+ bool upb_strtable_remove3(upb_strtable *t, const char *key, size_t len,
346
+ upb_value *val, upb_alloc *alloc);
347
+
348
+ UPB_INLINE bool upb_strtable_remove2(upb_strtable *t, const char *key,
349
+ size_t len, upb_value *val) {
350
+ return upb_strtable_remove3(t, key, len, val, &upb_alloc_global);
351
+ }
352
+
353
+ /* For NULL-terminated strings. */
354
+ UPB_INLINE bool upb_strtable_remove(upb_strtable *t, const char *key,
355
+ upb_value *v) {
356
+ return upb_strtable_remove2(t, key, strlen(key), v);
357
+ }
358
+
359
+ /* Updates an existing entry in an inttable. If the entry does not exist,
360
+ * returns false and does nothing. Unlike insert/remove, this does not
361
+ * invalidate iterators. */
362
+ bool upb_inttable_replace(upb_inttable *t, uintptr_t key, upb_value val);
363
+
364
+ /* Handy routines for treating an inttable like a stack. May not be mixed with
365
+ * other insert/remove calls. */
366
+ bool upb_inttable_push2(upb_inttable *t, upb_value val, upb_alloc *a);
367
+ upb_value upb_inttable_pop(upb_inttable *t);
368
+
369
+ UPB_INLINE bool upb_inttable_push(upb_inttable *t, upb_value val) {
370
+ return upb_inttable_push2(t, val, &upb_alloc_global);
371
+ }
372
+
373
+ /* Convenience routines for inttables with pointer keys. */
374
+ bool upb_inttable_insertptr2(upb_inttable *t, const void *key, upb_value val,
375
+ upb_alloc *a);
376
+ bool upb_inttable_removeptr(upb_inttable *t, const void *key, upb_value *val);
377
+ bool upb_inttable_lookupptr(
378
+ const upb_inttable *t, const void *key, upb_value *val);
379
+
380
+ UPB_INLINE bool upb_inttable_insertptr(upb_inttable *t, const void *key,
381
+ upb_value val) {
382
+ return upb_inttable_insertptr2(t, key, val, &upb_alloc_global);
383
+ }
384
+
385
+ /* Optimizes the table for the current set of entries, for both memory use and
386
+ * lookup time. Client should call this after all entries have been inserted;
387
+ * inserting more entries is legal, but will likely require a table resize. */
388
+ void upb_inttable_compact2(upb_inttable *t, upb_alloc *a);
389
+
390
+ UPB_INLINE void upb_inttable_compact(upb_inttable *t) {
391
+ upb_inttable_compact2(t, &upb_alloc_global);
392
+ }
393
+
394
+ /* A special-case inlinable version of the lookup routine for 32-bit
395
+ * integers. */
396
+ UPB_INLINE bool upb_inttable_lookup32(const upb_inttable *t, uint32_t key,
397
+ upb_value *v) {
398
+ *v = upb_value_int32(0); /* Silence compiler warnings. */
399
+ if (key < t->array_size) {
400
+ upb_tabval arrval = t->array[key];
401
+ if (upb_arrhas(arrval)) {
402
+ _upb_value_setval(v, arrval.val, t->t.ctype);
403
+ return true;
404
+ } else {
405
+ return false;
406
+ }
407
+ } else {
408
+ const upb_tabent *e;
409
+ if (t->t.entries == NULL) return false;
410
+ for (e = upb_getentry(&t->t, upb_inthash(key)); true; e = e->next) {
411
+ if ((uint32_t)e->key == key) {
412
+ _upb_value_setval(v, e->val.val, t->t.ctype);
413
+ return true;
414
+ }
415
+ if (e->next == NULL) return false;
416
+ }
417
+ }
418
+ }
419
+
420
+ /* Exposed for testing only. */
421
+ bool upb_strtable_resize(upb_strtable *t, size_t size_lg2, upb_alloc *a);
422
+
423
+ /* Iterators ******************************************************************/
424
+
425
+ /* Iterators for int and string tables. We are subject to some kind of unusual
426
+ * design constraints:
427
+ *
428
+ * For high-level languages:
429
+ * - we must be able to guarantee that we don't crash or corrupt memory even if
430
+ * the program accesses an invalidated iterator.
431
+ *
432
+ * For C++11 range-based for:
433
+ * - iterators must be copyable
434
+ * - iterators must be comparable
435
+ * - it must be possible to construct an "end" value.
436
+ *
437
+ * Iteration order is undefined.
438
+ *
439
+ * Modifying the table invalidates iterators. upb_{str,int}table_done() is
440
+ * guaranteed to work even on an invalidated iterator, as long as the table it
441
+ * is iterating over has not been freed. Calling next() or accessing data from
442
+ * an invalidated iterator yields unspecified elements from the table, but it is
443
+ * guaranteed not to crash and to return real table elements (except when done()
444
+ * is true). */
445
+
446
+
447
+ /* upb_strtable_iter **********************************************************/
448
+
449
+ /* upb_strtable_iter i;
450
+ * upb_strtable_begin(&i, t);
451
+ * for(; !upb_strtable_done(&i); upb_strtable_next(&i)) {
452
+ * const char *key = upb_strtable_iter_key(&i);
453
+ * const upb_value val = upb_strtable_iter_value(&i);
454
+ * // ...
455
+ * }
456
+ */
457
+
458
+ typedef struct {
459
+ const upb_strtable *t;
460
+ size_t index;
461
+ } upb_strtable_iter;
462
+
463
+ void upb_strtable_begin(upb_strtable_iter *i, const upb_strtable *t);
464
+ void upb_strtable_next(upb_strtable_iter *i);
465
+ bool upb_strtable_done(const upb_strtable_iter *i);
466
+ const char *upb_strtable_iter_key(const upb_strtable_iter *i);
467
+ size_t upb_strtable_iter_keylength(const upb_strtable_iter *i);
468
+ upb_value upb_strtable_iter_value(const upb_strtable_iter *i);
469
+ void upb_strtable_iter_setdone(upb_strtable_iter *i);
470
+ bool upb_strtable_iter_isequal(const upb_strtable_iter *i1,
471
+ const upb_strtable_iter *i2);
472
+
473
+
474
+ /* upb_inttable_iter **********************************************************/
475
+
476
+ /* upb_inttable_iter i;
477
+ * upb_inttable_begin(&i, t);
478
+ * for(; !upb_inttable_done(&i); upb_inttable_next(&i)) {
479
+ * uintptr_t key = upb_inttable_iter_key(&i);
480
+ * upb_value val = upb_inttable_iter_value(&i);
481
+ * // ...
482
+ * }
483
+ */
484
+
485
+ typedef struct {
486
+ const upb_inttable *t;
487
+ size_t index;
488
+ bool array_part;
489
+ } upb_inttable_iter;
490
+
491
+ void upb_inttable_begin(upb_inttable_iter *i, const upb_inttable *t);
492
+ void upb_inttable_next(upb_inttable_iter *i);
493
+ bool upb_inttable_done(const upb_inttable_iter *i);
494
+ uintptr_t upb_inttable_iter_key(const upb_inttable_iter *i);
495
+ upb_value upb_inttable_iter_value(const upb_inttable_iter *i);
496
+ void upb_inttable_iter_setdone(upb_inttable_iter *i);
497
+ bool upb_inttable_iter_isequal(const upb_inttable_iter *i1,
498
+ const upb_inttable_iter *i2);
499
+
500
+
501
+ #ifdef __cplusplus
502
+ } /* extern "C" */
503
+ #endif
504
+
505
+ #include "upb/port_undef.inc"
506
+
507
+ #endif /* UPB_TABLE_H_ */