protovalidate 0.1.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1827) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +8 -0
  3. data/CHANGELOG.md +5 -0
  4. data/LICENSE.txt +201 -0
  5. data/NOTICE.md +30 -0
  6. data/README.md +93 -0
  7. data/Rakefile +32 -0
  8. data/ext/protovalidate/Cargo.lock +342 -0
  9. data/ext/protovalidate/Cargo.toml +27 -0
  10. data/ext/protovalidate/build.rs +4 -0
  11. data/ext/protovalidate/extconf.rb +8 -0
  12. data/ext/protovalidate/src/lib.rs +161 -0
  13. data/ext/protovalidate/sys/Cargo.toml +11 -0
  14. data/ext/protovalidate/sys/build.rs +218 -0
  15. data/ext/protovalidate/sys/filelists/absl.txt +126 -0
  16. data/ext/protovalidate/sys/filelists/antlr4.txt +139 -0
  17. data/ext/protovalidate/sys/filelists/celcpp.txt +199 -0
  18. data/ext/protovalidate/sys/filelists/protobuf.txt +83 -0
  19. data/ext/protovalidate/sys/filelists/protovalidate.txt +14 -0
  20. data/ext/protovalidate/sys/filelists/re2.txt +25 -0
  21. data/ext/protovalidate/sys/gen/buf/validate/validate.pb.cc +23621 -0
  22. data/ext/protovalidate/sys/gen/buf/validate/validate.pb.h +27800 -0
  23. data/ext/protovalidate/sys/gen/cel/expr/checked.pb.cc +6286 -0
  24. data/ext/protovalidate/sys/gen/cel/expr/checked.pb.h +6412 -0
  25. data/ext/protovalidate/sys/gen/cel/expr/syntax.pb.cc +7423 -0
  26. data/ext/protovalidate/sys/gen/cel/expr/syntax.pb.h +7510 -0
  27. data/ext/protovalidate/sys/gen/cel/expr/value.pb.cc +2512 -0
  28. data/ext/protovalidate/sys/gen/cel/expr/value.pb.h +2589 -0
  29. data/ext/protovalidate/sys/gen/internal/empty_descriptor_set_embed.inc +1 -0
  30. data/ext/protovalidate/sys/gen/parser/internal/CelBaseVisitor.cpp +9 -0
  31. data/ext/protovalidate/sys/gen/parser/internal/CelBaseVisitor.h +167 -0
  32. data/ext/protovalidate/sys/gen/parser/internal/CelLexer.cpp +308 -0
  33. data/ext/protovalidate/sys/gen/parser/internal/CelLexer.h +57 -0
  34. data/ext/protovalidate/sys/gen/parser/internal/CelParser.cpp +2484 -0
  35. data/ext/protovalidate/sys/gen/parser/internal/CelParser.h +697 -0
  36. data/ext/protovalidate/sys/gen/parser/internal/CelVisitor.cpp +9 -0
  37. data/ext/protovalidate/sys/gen/parser/internal/CelVisitor.h +98 -0
  38. data/ext/protovalidate/sys/shim/pv_shim.cc +260 -0
  39. data/ext/protovalidate/sys/shim/pv_shim.h +84 -0
  40. data/ext/protovalidate/sys/src/lib.rs +176 -0
  41. data/ext/protovalidate/sys/third_party/abseil-cpp/LICENSE +203 -0
  42. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/algorithm/algorithm.h +96 -0
  43. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/algorithm/container.h +2011 -0
  44. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/attributes.h +1100 -0
  45. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/call_once.h +228 -0
  46. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/casts.cc +61 -0
  47. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/casts.h +313 -0
  48. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/config.h +898 -0
  49. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/const_init.h +76 -0
  50. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/dynamic_annotations.h +480 -0
  51. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/fast_type_id.h +73 -0
  52. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
  53. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/atomic_hook_test_helper.h +34 -0
  54. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +72 -0
  55. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/cycleclock.h +144 -0
  56. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/cycleclock_config.h +55 -0
  57. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +170 -0
  58. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h +398 -0
  59. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/endian.h +279 -0
  60. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
  61. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/exception_safety_testing.h +1112 -0
  62. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/exception_testing.h +42 -0
  63. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/hardening.h +136 -0
  64. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
  65. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/iterator_traits.h +75 -0
  66. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/iterator_traits_test_helper.h +97 -0
  67. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +667 -0
  68. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +133 -0
  69. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +196 -0
  70. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/nullability_traits.h +71 -0
  71. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
  72. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/poison.h +59 -0
  73. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/pretty_function.h +33 -0
  74. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +279 -0
  75. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/raw_logging.h +217 -0
  76. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
  77. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/scoped_set_env.h +45 -0
  78. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock.cc +225 -0
  79. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock.h +310 -0
  80. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
  81. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +71 -0
  82. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
  83. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
  84. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +95 -0
  85. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +40 -0
  86. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/strerror.cc +88 -0
  87. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/strerror.h +39 -0
  88. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +493 -0
  89. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/sysinfo.h +74 -0
  90. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +163 -0
  91. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/thread_identity.h +325 -0
  92. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/tracing.cc +39 -0
  93. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/tracing.h +81 -0
  94. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +68 -0
  95. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +89 -0
  96. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +134 -0
  97. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +118 -0
  98. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +62 -0
  99. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/log_severity.cc +56 -0
  100. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/log_severity.h +185 -0
  101. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/macros.h +259 -0
  102. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/no_destructor.h +191 -0
  103. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/nullability.h +318 -0
  104. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/optimization.h +311 -0
  105. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/options.h +212 -0
  106. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/policy_checks.h +115 -0
  107. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/port.h +25 -0
  108. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/prefetch.h +209 -0
  109. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/thread_annotations.h +333 -0
  110. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/throw_delegate.cc +205 -0
  111. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/base/throw_delegate.h +65 -0
  112. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/cleanup/cleanup.h +143 -0
  113. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +100 -0
  114. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/btree_map.h +941 -0
  115. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/btree_set.h +872 -0
  116. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/chunked_queue.h +757 -0
  117. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/fixed_array.h +548 -0
  118. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/flat_hash_map.h +714 -0
  119. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/flat_hash_set.h +604 -0
  120. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
  121. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/inlined_vector.h +1025 -0
  122. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/btree.h +3157 -0
  123. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/btree_container.h +875 -0
  124. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/chunked_queue.h +173 -0
  125. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/common.h +302 -0
  126. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +151 -0
  127. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +275 -0
  128. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/container_memory.h +571 -0
  129. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +281 -0
  130. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_generator_testing.h +172 -0
  131. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_policy_testing.h +173 -0
  132. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +195 -0
  133. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtable_control_bytes.h +527 -0
  134. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtable_debug.h +102 -0
  135. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
  136. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +316 -0
  137. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +294 -0
  138. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +31 -0
  139. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/heterogeneous_lookup_testing.h +80 -0
  140. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +1094 -0
  141. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/layout.h +828 -0
  142. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/node_slot_policy.h +95 -0
  143. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +380 -0
  144. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +2110 -0
  145. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +4056 -0
  146. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/raw_hash_set_resize_impl.h +79 -0
  147. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/test_allocator.h +387 -0
  148. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/test_instance_tracker.h +274 -0
  149. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/internal/tracked.h +83 -0
  150. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/linked_hash_map.h +666 -0
  151. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/linked_hash_set.h +527 -0
  152. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/node_hash_map.h +710 -0
  153. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/container/node_hash_set.h +603 -0
  154. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/crc32c.cc +95 -0
  155. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/crc32c.h +192 -0
  156. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +359 -0
  157. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +69 -0
  158. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc.cc +435 -0
  159. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc.h +83 -0
  160. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +319 -0
  161. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc32c.h +39 -0
  162. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc32c_inline.h +72 -0
  163. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +131 -0
  164. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +159 -0
  165. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +161 -0
  166. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +122 -0
  167. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +78 -0
  168. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +459 -0
  169. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +93 -0
  170. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +824 -0
  171. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h +81 -0
  172. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +195 -0
  173. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/failure_signal_handler.h +121 -0
  174. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +98 -0
  175. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
  176. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/addresses.h +57 -0
  177. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  178. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  179. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
  180. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +2958 -0
  181. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle.h +76 -0
  182. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
  183. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +50 -0
  184. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +413 -0
  185. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +141 -0
  186. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +334 -0
  187. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +70 -0
  188. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stack_consumption.h +50 -0
  189. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +299 -0
  190. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +148 -0
  191. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +96 -0
  192. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +121 -0
  193. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +121 -0
  194. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +270 -0
  195. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +208 -0
  196. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +25 -0
  197. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +81 -0
  198. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +410 -0
  199. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +163 -0
  200. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  201. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
  202. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +209 -0
  203. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
  204. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/leak_check.cc +73 -0
  205. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/leak_check.h +150 -0
  206. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/stacktrace.cc +204 -0
  207. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/stacktrace.h +259 -0
  208. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize.cc +62 -0
  209. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
  210. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +102 -0
  211. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1708 -0
  212. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +63 -0
  213. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
  214. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +99 -0
  215. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/commandlineflag.h +220 -0
  216. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/config.h +68 -0
  217. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/declare.h +77 -0
  218. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/flag.h +307 -0
  219. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
  220. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/flag.h +969 -0
  221. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/parse.h +70 -0
  222. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
  223. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +64 -0
  224. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
  225. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/registry.h +98 -0
  226. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
  227. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/internal/usage.h +106 -0
  228. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/marshalling.h +335 -0
  229. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/parse.h +130 -0
  230. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
  231. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/usage.h +43 -0
  232. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
  233. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/any_invocable.h +335 -0
  234. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/bind_back.h +79 -0
  235. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/bind_front.h +200 -0
  236. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/function_ref.h +249 -0
  237. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +787 -0
  238. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/back_binder.h +95 -0
  239. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/front_binder.h +93 -0
  240. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/internal/function_ref.h +151 -0
  241. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/functional/overload.h +72 -0
  242. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/hash.h +466 -0
  243. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/hash_testing.h +382 -0
  244. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/city.cc +337 -0
  245. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/city.h +78 -0
  246. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/hash.cc +430 -0
  247. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/hash.h +1619 -0
  248. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/spy_hash_state.h +289 -0
  249. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/hash/internal/weakly_mixed_integer.h +38 -0
  250. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/absl_check.h +117 -0
  251. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/absl_log.h +115 -0
  252. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
  253. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/check.h +210 -0
  254. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/check_test_impl.inc +1035 -0
  255. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/die_if_null.cc +34 -0
  256. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/die_if_null.h +97 -0
  257. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/flags.h +43 -0
  258. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/globals.cc +178 -0
  259. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/globals.h +230 -0
  260. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/initialize.h +45 -0
  261. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/append_truncated.h +75 -0
  262. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/check_impl.h +151 -0
  263. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/check_op.cc +147 -0
  264. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/check_op.h +565 -0
  265. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/conditions.cc +85 -0
  266. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/conditions.h +247 -0
  267. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
  268. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/container.h +312 -0
  269. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/flags.h +59 -0
  270. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
  271. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
  272. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
  273. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
  274. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
  275. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
  276. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_impl.h +280 -0
  277. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_message.cc +788 -0
  278. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_message.h +469 -0
  279. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
  280. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
  281. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
  282. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
  283. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/nullstream.h +128 -0
  284. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/proto.cc +231 -0
  285. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/proto.h +298 -0
  286. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/strip.h +99 -0
  287. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/structured.h +160 -0
  288. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/structured_proto.cc +115 -0
  289. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/structured_proto.h +108 -0
  290. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/test_actions.h +90 -0
  291. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/test_helpers.h +71 -0
  292. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/test_matchers.h +94 -0
  293. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +347 -0
  294. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/vlog_config.h +164 -0
  295. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/internal/voidify.h +50 -0
  296. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log.h +378 -0
  297. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_basic_test_impl.inc +654 -0
  298. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_entry.cc +263 -0
  299. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_entry.h +223 -0
  300. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
  301. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
  302. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_sink_registry.h +64 -0
  303. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/log_streamer.h +208 -0
  304. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/scoped_mock_log.h +203 -0
  305. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/structured.h +75 -0
  306. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
  307. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/memory/memory.h +328 -0
  308. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/meta/internal/constexpr_testing.h +73 -0
  309. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/meta/internal/requires.h +67 -0
  310. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/meta/type_traits.h +646 -0
  311. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/bits.h +262 -0
  312. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128.cc +344 -0
  313. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128.h +1224 -0
  314. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +303 -0
  315. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +347 -0
  316. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/internal/bits.h +394 -0
  317. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
  318. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/hashtable.h +40 -0
  319. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc +93 -0
  320. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.h +130 -0
  321. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/periodic_sampler.h +211 -0
  322. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/profile_builder.h +161 -0
  323. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +253 -0
  324. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +202 -0
  325. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/beta_distribution.h +429 -0
  326. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/bit_gen_ref.h +160 -0
  327. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/discrete_distribution.h +249 -0
  328. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/distributions.h +450 -0
  329. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/exponential_distribution.h +166 -0
  330. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/gaussian_distribution.h +276 -0
  331. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/chi_square.h +89 -0
  332. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +83 -0
  333. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/distribution_test_util.h +113 -0
  334. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/entropy_pool.h +35 -0
  335. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/explicit_seed_seq.h +92 -0
  336. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +271 -0
  337. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
  338. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
  339. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +248 -0
  340. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/mock_helpers.h +134 -0
  341. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/mock_overload_set.h +122 -0
  342. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/mock_validators.h +98 -0
  343. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/nanobenchmark.h +172 -0
  344. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +160 -0
  345. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +287 -0
  346. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/platform.h +158 -0
  347. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen.h +96 -0
  348. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
  349. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_engine.h +265 -0
  350. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
  351. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
  352. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
  353. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +166 -0
  354. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/seed_material.h +105 -0
  355. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/sequence_urbg.h +60 -0
  356. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/traits.h +170 -0
  357. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
  358. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +95 -0
  359. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +253 -0
  360. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/mock_distributions.h +269 -0
  361. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/mocking_access.h +74 -0
  362. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/mocking_bit_gen.h +227 -0
  363. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/poisson_distribution.h +262 -0
  364. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/random.h +224 -0
  365. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
  366. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/seed_sequences.h +112 -0
  367. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +276 -0
  368. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +204 -0
  369. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/random/zipf_distribution.h +273 -0
  370. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/status_internal.cc +296 -0
  371. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/status_internal.h +157 -0
  372. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/status_matchers.h +260 -0
  373. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +657 -0
  374. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status.cc +413 -0
  375. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status.h +1174 -0
  376. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_builder.h +978 -0
  377. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_macros.h +484 -0
  378. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_matchers.h +167 -0
  379. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_payload_printer.cc +36 -0
  380. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/status_payload_printer.h +53 -0
  381. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/statusor.cc +106 -0
  382. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/status/statusor.h +776 -0
  383. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/ascii.cc +296 -0
  384. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/ascii.h +288 -0
  385. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/charconv.cc +1442 -0
  386. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/charconv.h +123 -0
  387. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/charset.h +163 -0
  388. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord.cc +1601 -0
  389. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord.h +1773 -0
  390. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_analysis.cc +196 -0
  391. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_analysis.h +63 -0
  392. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_buffer.h +574 -0
  393. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cord_test_helpers.h +122 -0
  394. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/cordz_test_helpers.h +152 -0
  395. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/escaping.cc +1183 -0
  396. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/escaping.h +195 -0
  397. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +64 -0
  398. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/has_ostream_operator.h +42 -0
  399. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/append_and_overwrite.h +93 -0
  400. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +357 -0
  401. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +433 -0
  402. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
  403. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
  404. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h +63 -0
  405. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +70 -0
  406. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +942 -0
  407. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1237 -0
  408. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +944 -0
  409. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +187 -0
  410. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +267 -0
  411. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +69 -0
  412. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +212 -0
  413. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +64 -0
  414. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +47 -0
  415. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc +56 -0
  416. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h +103 -0
  417. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +195 -0
  418. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cord_rep_test_util.h +205 -0
  419. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +102 -0
  420. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +87 -0
  421. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +165 -0
  422. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +98 -0
  423. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +424 -0
  424. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +295 -0
  425. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_sample_token.h +97 -0
  426. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +88 -0
  427. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
  428. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +123 -0
  429. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc +99 -0
  430. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.h +35 -0
  431. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/escaping.cc +68 -0
  432. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/escaping.h +35 -0
  433. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/escaping_test_common.h +133 -0
  434. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/generic_printer.h +115 -0
  435. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/generic_printer_internal.h +444 -0
  436. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/memutil.cc +48 -0
  437. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/memutil.h +40 -0
  438. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/numbers_test_common.h +184 -0
  439. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +43 -0
  440. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +114 -0
  441. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/pow10_helper.h +40 -0
  442. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +114 -0
  443. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
  444. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +615 -0
  445. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +653 -0
  446. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +275 -0
  447. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +237 -0
  448. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +98 -0
  449. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +357 -0
  450. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +53 -0
  451. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +456 -0
  452. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +2148 -0
  453. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +37 -0
  454. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +74 -0
  455. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +97 -0
  456. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +140 -0
  457. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +271 -0
  458. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +340 -0
  459. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +524 -0
  460. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/string_constant.h +67 -0
  461. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc +28 -0
  462. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stringify_sink.h +69 -0
  463. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/stringify_stream.h +119 -0
  464. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/utf8.cc +148 -0
  465. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/internal/utf8.h +64 -0
  466. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/match.cc +133 -0
  467. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/match.h +129 -0
  468. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/numbers.cc +1636 -0
  469. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/numbers.h +363 -0
  470. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/resize_and_overwrite.h +198 -0
  471. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_cat.cc +247 -0
  472. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_cat.h +668 -0
  473. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_format.h +887 -0
  474. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_join.h +301 -0
  475. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_replace.cc +91 -0
  476. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_replace.h +222 -0
  477. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_split.cc +144 -0
  478. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/str_split.h +587 -0
  479. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/string_view.h +60 -0
  480. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/strip.h +99 -0
  481. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/substitute.cc +187 -0
  482. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/strings/substitute.h +769 -0
  483. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
  484. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
  485. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +73 -0
  486. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +107 -0
  487. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +173 -0
  488. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +56 -0
  489. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/futex.h +177 -0
  490. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +107 -0
  491. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  492. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +714 -0
  493. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +146 -0
  494. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +220 -0
  495. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +178 -0
  496. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
  497. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +124 -0
  498. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +163 -0
  499. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  500. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +118 -0
  501. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  502. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +87 -0
  503. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  504. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/thread_pool.h +96 -0
  505. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +69 -0
  506. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +38 -0
  507. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  508. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +147 -0
  509. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +72 -0
  510. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/mutex.cc +2833 -0
  511. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/mutex.h +1352 -0
  512. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/notification.cc +85 -0
  513. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/synchronization/notification.h +133 -0
  514. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/civil_time.cc +200 -0
  515. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/civil_time.h +589 -0
  516. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/clock.cc +603 -0
  517. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/clock.h +81 -0
  518. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/clock_interface.h +93 -0
  519. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/duration.cc +918 -0
  520. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/format.cc +155 -0
  521. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
  522. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +644 -0
  523. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +460 -0
  524. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
  525. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
  526. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/test_time_zone_names.h +33 -0
  527. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
  528. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
  529. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1069 -0
  530. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +47 -0
  531. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +80 -0
  532. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +115 -0
  533. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +97 -0
  534. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +1070 -0
  535. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +128 -0
  536. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +333 -0
  537. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +60 -0
  538. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +217 -0
  539. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_name_win.cc +185 -0
  540. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_name_win.h +37 -0
  541. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
  542. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
  543. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +115 -0
  544. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +116 -0
  545. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
  546. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
  547. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/internal/test_util.h +33 -0
  548. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/simulated_clock.h +109 -0
  549. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/time.cc +507 -0
  550. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/time/time.h +1926 -0
  551. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/any.h +66 -0
  552. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/any_span.h +1067 -0
  553. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/compare.h +506 -0
  554. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/internal/any_span.h +477 -0
  555. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/internal/span.h +140 -0
  556. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/optional.h +68 -0
  557. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/optional_ref.h +295 -0
  558. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/source_location.cc +18 -0
  559. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/source_location.h +172 -0
  560. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/span.h +827 -0
  561. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/types/variant.h +139 -0
  562. data/ext/protovalidate/sys/third_party/abseil-cpp/absl/utility/utility.h +151 -0
  563. data/ext/protovalidate/sys/third_party/antlr4/LICENSE.txt +28 -0
  564. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
  565. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
  566. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
  567. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
  568. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +23 -0
  569. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRFileStream.h +30 -0
  570. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +180 -0
  571. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ANTLRInputStream.h +79 -0
  572. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
  573. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
  574. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
  575. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
  576. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
  577. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
  578. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
  579. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CharStream.h +37 -0
  580. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonToken.cpp +193 -0
  581. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonToken.h +158 -0
  582. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
  583. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
  584. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
  585. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
  586. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
  587. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
  588. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +336 -0
  589. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
  590. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
  591. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
  592. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
  593. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Exceptions.h +99 -0
  594. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FailedPredicateException.cpp +52 -0
  595. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
  596. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FlatHashMap.h +57 -0
  597. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/FlatHashSet.h +57 -0
  598. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
  599. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
  600. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
  601. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/IntStream.h +218 -0
  602. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
  603. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
  604. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Lexer.cpp +294 -0
  605. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Lexer.h +196 -0
  606. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerInterpreter.cpp +60 -0
  607. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerInterpreter.h +46 -0
  608. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
  609. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
  610. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
  611. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
  612. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
  613. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
  614. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Parser.cpp +670 -0
  615. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Parser.h +461 -0
  616. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserInterpreter.cpp +294 -0
  617. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserInterpreter.h +173 -0
  618. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserRuleContext.cpp +138 -0
  619. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
  620. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
  621. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
  622. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RecognitionException.cpp +65 -0
  623. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
  624. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Recognizer.cpp +157 -0
  625. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Recognizer.h +160 -0
  626. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContext.cpp +144 -0
  627. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContext.h +141 -0
  628. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
  629. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
  630. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +54 -0
  631. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
  632. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Token.cpp +9 -0
  633. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Token.h +92 -0
  634. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
  635. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
  636. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenSource.h +85 -0
  637. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
  638. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStream.h +137 -0
  639. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +428 -0
  640. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/TokenStreamRewriter.h +295 -0
  641. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +208 -0
  642. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedCharStream.h +117 -0
  643. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
  644. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
  645. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Version.h +42 -0
  646. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Vocabulary.cpp +64 -0
  647. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/Vocabulary.h +177 -0
  648. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
  649. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/WritableToken.h +23 -0
  650. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/antlr4-common.h +101 -0
  651. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/antlr4-runtime.h +168 -0
  652. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATN.cpp +159 -0
  653. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATN.h +133 -0
  654. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +106 -0
  655. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfig.h +157 -0
  656. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +233 -0
  657. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +157 -0
  658. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +39 -0
  659. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +48 -0
  660. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +628 -0
  661. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +32 -0
  662. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +33 -0
  663. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNSimulator.h +71 -0
  664. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNState.cpp +56 -0
  665. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNState.h +139 -0
  666. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNStateType.cpp +33 -0
  667. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNStateType.h +36 -0
  668. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
  669. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +29 -0
  670. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ActionTransition.h +35 -0
  671. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
  672. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
  673. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +129 -0
  674. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +51 -0
  675. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +27 -0
  676. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/AtomTransition.h +33 -0
  677. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +24 -0
  678. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BasicState.h +23 -0
  679. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BlockEndState.h +26 -0
  680. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/BlockStartState.h +30 -0
  681. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
  682. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
  683. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
  684. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
  685. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
  686. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
  687. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionState.cpp +12 -0
  688. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/DecisionState.h +34 -0
  689. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +31 -0
  690. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +42 -0
  691. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
  692. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
  693. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/HashUtils.h +18 -0
  694. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +189 -0
  695. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +76 -0
  696. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +67 -0
  697. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
  698. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +621 -0
  699. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +199 -0
  700. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerAction.cpp +15 -0
  701. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerAction.h +100 -0
  702. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +108 -0
  703. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +128 -0
  704. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerActionType.h +57 -0
  705. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +43 -0
  706. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +59 -0
  707. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +45 -0
  708. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +75 -0
  709. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +50 -0
  710. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +76 -0
  711. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +43 -0
  712. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerModeAction.h +57 -0
  713. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +36 -0
  714. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +53 -0
  715. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +36 -0
  716. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +53 -0
  717. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +43 -0
  718. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +57 -0
  719. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +36 -0
  720. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +51 -0
  721. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +43 -0
  722. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +51 -0
  723. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
  724. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
  725. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/LoopEndState.h +26 -0
  726. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +22 -0
  727. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/NotSetTransition.h +27 -0
  728. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +16 -0
  729. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +25 -0
  730. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
  731. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
  732. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1413 -0
  733. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +911 -0
  734. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ParserATNSimulatorOptions.h +50 -0
  735. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +29 -0
  736. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +25 -0
  737. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +23 -0
  738. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +35 -0
  739. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
  740. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
  741. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +24 -0
  742. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredicateTransition.h +50 -0
  743. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +601 -0
  744. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContext.h +225 -0
  745. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextCache.cpp +56 -0
  746. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextCache.h +63 -0
  747. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.cpp +167 -0
  748. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.h +101 -0
  749. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextMergeCacheOptions.h +71 -0
  750. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionContextType.h +21 -0
  751. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +202 -0
  752. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
  753. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
  754. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
  755. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +26 -0
  756. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RangeTransition.h +31 -0
  757. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleStartState.h +26 -0
  758. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleStopState.h +27 -0
  759. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +33 -0
  760. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/RuleTransition.h +42 -0
  761. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +418 -0
  762. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SemanticContext.h +237 -0
  763. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SemanticContextType.h +23 -0
  764. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SerializedATNView.h +101 -0
  765. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SetTransition.cpp +28 -0
  766. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SetTransition.h +38 -0
  767. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +79 -0
  768. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +43 -0
  769. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +24 -0
  770. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +37 -0
  771. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
  772. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +25 -0
  773. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/TokensStartState.h +24 -0
  774. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/Transition.cpp +36 -0
  775. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/Transition.h +65 -0
  776. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/TransitionType.cpp +27 -0
  777. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/TransitionType.h +33 -0
  778. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +21 -0
  779. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/atn/WildcardTransition.h +27 -0
  780. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFA.cpp +115 -0
  781. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFA.h +96 -0
  782. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +60 -0
  783. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
  784. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFAState.cpp +59 -0
  785. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/DFAState.h +154 -0
  786. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +17 -0
  787. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +22 -0
  788. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/internal/Synchronization.cpp +100 -0
  789. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/internal/Synchronization.h +154 -0
  790. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
  791. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +33 -0
  792. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Interval.cpp +61 -0
  793. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
  794. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +508 -0
  795. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/IntervalSet.h +190 -0
  796. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +120 -0
  797. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/MurmurHash.h +102 -0
  798. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
  799. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
  800. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Any.cpp +8 -0
  801. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Any.h +16 -0
  802. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
  803. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Arrays.h +149 -0
  804. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
  805. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/CPPUtils.cpp +207 -0
  806. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/CPPUtils.h +65 -0
  807. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Casts.h +34 -0
  808. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Declarations.h +161 -0
  809. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/StringUtils.cpp +38 -0
  810. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/StringUtils.h +16 -0
  811. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Unicode.h +28 -0
  812. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Utf8.cpp +242 -0
  813. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/support/Utf8.h +54 -0
  814. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +129 -0
  815. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ErrorNode.h +24 -0
  816. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +54 -0
  817. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +43 -0
  818. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +66 -0
  819. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
  820. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTree.cpp +12 -0
  821. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTree.h +111 -0
  822. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
  823. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
  824. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
  825. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeType.h +22 -0
  826. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
  827. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
  828. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +48 -0
  829. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +55 -0
  830. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/TerminalNode.h +40 -0
  831. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +54 -0
  832. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +32 -0
  833. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
  834. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
  835. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
  836. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
  837. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
  838. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
  839. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
  840. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
  841. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +370 -0
  842. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
  843. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
  844. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
  845. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
  846. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
  847. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
  848. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
  849. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
  850. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
  851. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
  852. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
  853. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
  854. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
  855. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +180 -0
  856. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +53 -0
  857. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
  858. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
  859. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
  860. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
  861. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
  862. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
  863. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
  864. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
  865. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
  866. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
  867. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
  868. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
  869. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
  870. data/ext/protovalidate/sys/third_party/antlr4/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
  871. data/ext/protovalidate/sys/third_party/cel-cpp/LICENSE +202 -0
  872. data/ext/protovalidate/sys/third_party/cel-cpp/base/ast.h +20 -0
  873. data/ext/protovalidate/sys/third_party/cel-cpp/base/attribute.cc +330 -0
  874. data/ext/protovalidate/sys/third_party/cel-cpp/base/attribute.h +278 -0
  875. data/ext/protovalidate/sys/third_party/cel-cpp/base/attribute_set.h +108 -0
  876. data/ext/protovalidate/sys/third_party/cel-cpp/base/builtins.h +106 -0
  877. data/ext/protovalidate/sys/third_party/cel-cpp/base/function.h +20 -0
  878. data/ext/protovalidate/sys/third_party/cel-cpp/base/function_adapter.h +19 -0
  879. data/ext/protovalidate/sys/third_party/cel-cpp/base/function_descriptor.h +20 -0
  880. data/ext/protovalidate/sys/third_party/cel-cpp/base/function_result.h +70 -0
  881. data/ext/protovalidate/sys/third_party/cel-cpp/base/function_result_set.cc +28 -0
  882. data/ext/protovalidate/sys/third_party/cel-cpp/base/function_result_set.h +105 -0
  883. data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/memory_manager_testing.h +54 -0
  884. data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/message_wrapper.h +30 -0
  885. data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/operators.h +91 -0
  886. data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/unknown_set.cc +31 -0
  887. data/ext/protovalidate/sys/third_party/cel-cpp/base/internal/unknown_set.h +131 -0
  888. data/ext/protovalidate/sys/third_party/cel-cpp/base/kind.h +25 -0
  889. data/ext/protovalidate/sys/third_party/cel-cpp/base/operators.h +507 -0
  890. data/ext/protovalidate/sys/third_party/cel-cpp/base/type_provider.h +26 -0
  891. data/ext/protovalidate/sys/third_party/cel-cpp/checker/checker_options.h +110 -0
  892. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/builtins_arena.cc +28 -0
  893. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/builtins_arena.h +29 -0
  894. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/field_path.h +77 -0
  895. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/namespace_generator.h +120 -0
  896. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/proto_type_mask.h +111 -0
  897. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/proto_type_mask_registry.h +83 -0
  898. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/test_ast_helpers.h +31 -0
  899. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_check_env.h +249 -0
  900. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_checker_builder_impl.h +170 -0
  901. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_checker_impl.h +58 -0
  902. data/ext/protovalidate/sys/third_party/cel-cpp/checker/internal/type_inference_context.h +229 -0
  903. data/ext/protovalidate/sys/third_party/cel-cpp/checker/optional.h +30 -0
  904. data/ext/protovalidate/sys/third_party/cel-cpp/checker/standard_library.h +26 -0
  905. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_check_issue.cc +59 -0
  906. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_check_issue.h +69 -0
  907. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker.cc +36 -0
  908. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker.h +65 -0
  909. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker_builder.h +186 -0
  910. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker_builder_factory.h +59 -0
  911. data/ext/protovalidate/sys/third_party/cel-cpp/checker/type_checker_subset_factory.h +45 -0
  912. data/ext/protovalidate/sys/third_party/cel-cpp/checker/validation_result.cc +32 -0
  913. data/ext/protovalidate/sys/third_party/cel-cpp/checker/validation_result.h +117 -0
  914. data/ext/protovalidate/sys/third_party/cel-cpp/codelab/checked_expr_conversion_example.h +59 -0
  915. data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise1.h +32 -0
  916. data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise10.h +46 -0
  917. data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise2.h +40 -0
  918. data/ext/protovalidate/sys/third_party/cel-cpp/codelab/exercise4.h +34 -0
  919. data/ext/protovalidate/sys/third_party/cel-cpp/codelab/network_functions.h +197 -0
  920. data/ext/protovalidate/sys/third_party/cel-cpp/common/allocator.h +606 -0
  921. data/ext/protovalidate/sys/third_party/cel-cpp/common/any.cc +38 -0
  922. data/ext/protovalidate/sys/third_party/cel-cpp/common/any.h +90 -0
  923. data/ext/protovalidate/sys/third_party/cel-cpp/common/arena.h +110 -0
  924. data/ext/protovalidate/sys/third_party/cel-cpp/common/arena_string.h +365 -0
  925. data/ext/protovalidate/sys/third_party/cel-cpp/common/arena_string_pool.h +86 -0
  926. data/ext/protovalidate/sys/third_party/cel-cpp/common/arena_string_view.h +239 -0
  927. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/constant_proto.cc +123 -0
  928. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/constant_proto.h +37 -0
  929. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/expr_proto.cc +514 -0
  930. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/expr_proto.h +32 -0
  931. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/metadata.cc +262 -0
  932. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/metadata.h +920 -0
  933. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/navigable_ast_internal.h +311 -0
  934. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/navigable_ast_kinds.cc +80 -0
  935. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/navigable_ast_kinds.h +74 -0
  936. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/source_info_proto.cc +90 -0
  937. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast/source_info_proto.h +32 -0
  938. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast.cc +98 -0
  939. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast.h +157 -0
  940. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_proto.cc +547 -0
  941. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_proto.h +52 -0
  942. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_rewrite.cc +389 -0
  943. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_rewrite.h +146 -0
  944. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_traverse.cc +380 -0
  945. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_traverse.h +105 -0
  946. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_visitor.h +118 -0
  947. data/ext/protovalidate/sys/third_party/cel-cpp/common/ast_visitor_base.h +88 -0
  948. data/ext/protovalidate/sys/third_party/cel-cpp/common/casting.h +75 -0
  949. data/ext/protovalidate/sys/third_party/cel-cpp/common/constant.cc +101 -0
  950. data/ext/protovalidate/sys/third_party/cel-cpp/common/constant.h +491 -0
  951. data/ext/protovalidate/sys/third_party/cel-cpp/common/container.cc +171 -0
  952. data/ext/protovalidate/sys/third_party/cel-cpp/common/container.h +138 -0
  953. data/ext/protovalidate/sys/third_party/cel-cpp/common/data.h +120 -0
  954. data/ext/protovalidate/sys/third_party/cel-cpp/common/decl.cc +221 -0
  955. data/ext/protovalidate/sys/third_party/cel-cpp/common/decl.h +446 -0
  956. data/ext/protovalidate/sys/third_party/cel-cpp/common/decl_proto.h +50 -0
  957. data/ext/protovalidate/sys/third_party/cel-cpp/common/decl_proto_v1alpha1.h +55 -0
  958. data/ext/protovalidate/sys/third_party/cel-cpp/common/descriptor_pool_type_introspector.cc +244 -0
  959. data/ext/protovalidate/sys/third_party/cel-cpp/common/descriptor_pool_type_introspector.h +106 -0
  960. data/ext/protovalidate/sys/third_party/cel-cpp/common/expr.cc +320 -0
  961. data/ext/protovalidate/sys/third_party/cel-cpp/common/expr.h +1720 -0
  962. data/ext/protovalidate/sys/third_party/cel-cpp/common/expr_factory.h +402 -0
  963. data/ext/protovalidate/sys/third_party/cel-cpp/common/expr_printer.h +57 -0
  964. data/ext/protovalidate/sys/third_party/cel-cpp/common/format_type_name.h +30 -0
  965. data/ext/protovalidate/sys/third_party/cel-cpp/common/function_descriptor.cc +98 -0
  966. data/ext/protovalidate/sys/third_party/cel-cpp/common/function_descriptor.h +124 -0
  967. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/byte_string.cc +1074 -0
  968. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/byte_string.h +688 -0
  969. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/casting.h +237 -0
  970. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/metadata.h +41 -0
  971. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/reference_count.cc +118 -0
  972. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/reference_count.h +406 -0
  973. data/ext/protovalidate/sys/third_party/cel-cpp/common/internal/value_conversion.h +115 -0
  974. data/ext/protovalidate/sys/third_party/cel-cpp/common/json.h +35 -0
  975. data/ext/protovalidate/sys/third_party/cel-cpp/common/kind.cc +80 -0
  976. data/ext/protovalidate/sys/third_party/cel-cpp/common/kind.h +76 -0
  977. data/ext/protovalidate/sys/third_party/cel-cpp/common/legacy_value.cc +1324 -0
  978. data/ext/protovalidate/sys/third_party/cel-cpp/common/legacy_value.h +131 -0
  979. data/ext/protovalidate/sys/third_party/cel-cpp/common/memory.cc +83 -0
  980. data/ext/protovalidate/sys/third_party/cel-cpp/common/memory.h +1505 -0
  981. data/ext/protovalidate/sys/third_party/cel-cpp/common/memory_testing.h +71 -0
  982. data/ext/protovalidate/sys/third_party/cel-cpp/common/minimal_descriptor_database.h +32 -0
  983. data/ext/protovalidate/sys/third_party/cel-cpp/common/minimal_descriptor_pool.h +36 -0
  984. data/ext/protovalidate/sys/third_party/cel-cpp/common/native_type.h +26 -0
  985. data/ext/protovalidate/sys/third_party/cel-cpp/common/navigable_ast.cc +202 -0
  986. data/ext/protovalidate/sys/third_party/cel-cpp/common/navigable_ast.h +168 -0
  987. data/ext/protovalidate/sys/third_party/cel-cpp/common/operators.cc +233 -0
  988. data/ext/protovalidate/sys/third_party/cel-cpp/common/operators.h +87 -0
  989. data/ext/protovalidate/sys/third_party/cel-cpp/common/optional_ref.h +163 -0
  990. data/ext/protovalidate/sys/third_party/cel-cpp/common/reference.h +269 -0
  991. data/ext/protovalidate/sys/third_party/cel-cpp/common/reference_count.h +26 -0
  992. data/ext/protovalidate/sys/third_party/cel-cpp/common/signature.cc +640 -0
  993. data/ext/protovalidate/sys/third_party/cel-cpp/common/signature.h +101 -0
  994. data/ext/protovalidate/sys/third_party/cel-cpp/common/source.cc +679 -0
  995. data/ext/protovalidate/sys/third_party/cel-cpp/common/source.h +261 -0
  996. data/ext/protovalidate/sys/third_party/cel-cpp/common/standard_definitions.h +349 -0
  997. data/ext/protovalidate/sys/third_party/cel-cpp/common/type.cc +737 -0
  998. data/ext/protovalidate/sys/third_party/cel-cpp/common/type.h +1303 -0
  999. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_introspector.cc +277 -0
  1000. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_introspector.h +157 -0
  1001. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_kind.h +113 -0
  1002. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_proto.h +39 -0
  1003. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_reflector.h +43 -0
  1004. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_spec_resolver.cc +324 -0
  1005. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_spec_resolver.h +46 -0
  1006. data/ext/protovalidate/sys/third_party/cel-cpp/common/type_testing.h +24 -0
  1007. data/ext/protovalidate/sys/third_party/cel-cpp/common/typeinfo.cc +73 -0
  1008. data/ext/protovalidate/sys/third_party/cel-cpp/common/typeinfo.h +221 -0
  1009. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/any_type.h +74 -0
  1010. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/basic_struct_type.cc +53 -0
  1011. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/basic_struct_type.h +119 -0
  1012. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bool_type.h +73 -0
  1013. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bool_wrapper_type.h +79 -0
  1014. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bytes_type.h +73 -0
  1015. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/bytes_wrapper_type.h +79 -0
  1016. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/double_type.h +73 -0
  1017. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/double_wrapper_type.h +79 -0
  1018. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/duration_type.h +73 -0
  1019. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/dyn_type.h +73 -0
  1020. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/enum_type.cc +43 -0
  1021. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/enum_type.h +128 -0
  1022. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/error_type.h +75 -0
  1023. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type.cc +89 -0
  1024. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type.h +91 -0
  1025. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type_pool.cc +29 -0
  1026. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/function_type_pool.h +102 -0
  1027. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/int_type.h +72 -0
  1028. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/int_wrapper_type.h +78 -0
  1029. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/legacy_type_introspector.h +34 -0
  1030. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type.cc +77 -0
  1031. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type.h +115 -0
  1032. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type_pool.cc +29 -0
  1033. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/list_type_pool.h +80 -0
  1034. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type.cc +122 -0
  1035. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type.h +124 -0
  1036. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type_pool.cc +30 -0
  1037. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/map_type_pool.h +93 -0
  1038. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/message_type.cc +95 -0
  1039. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/message_type.h +209 -0
  1040. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/null_type.h +73 -0
  1041. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type.cc +109 -0
  1042. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type.h +118 -0
  1043. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type_pool.cc +33 -0
  1044. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/opaque_type_pool.h +99 -0
  1045. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/optional_type.cc +68 -0
  1046. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/optional_type.h +114 -0
  1047. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/string_type.h +73 -0
  1048. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/string_wrapper_type.h +86 -0
  1049. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/struct_type.cc +87 -0
  1050. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/struct_type.h +158 -0
  1051. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/timestamp_type.h +73 -0
  1052. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_param_type.h +78 -0
  1053. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_pool.cc +96 -0
  1054. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_pool.h +99 -0
  1055. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type.cc +74 -0
  1056. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type.h +92 -0
  1057. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type_pool.cc +26 -0
  1058. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/type_type_pool.h +86 -0
  1059. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/types.h +99 -0
  1060. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/uint_type.h +73 -0
  1061. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/uint_wrapper_type.h +79 -0
  1062. data/ext/protovalidate/sys/third_party/cel-cpp/common/types/unknown_type.h +74 -0
  1063. data/ext/protovalidate/sys/third_party/cel-cpp/common/unknown.h +27 -0
  1064. data/ext/protovalidate/sys/third_party/cel-cpp/common/value.cc +2791 -0
  1065. data/ext/protovalidate/sys/third_party/cel-cpp/common/value.h +2947 -0
  1066. data/ext/protovalidate/sys/third_party/cel-cpp/common/value_kind.h +104 -0
  1067. data/ext/protovalidate/sys/third_party/cel-cpp/common/value_testing.h +307 -0
  1068. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bool_value.cc +97 -0
  1069. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bool_value.h +111 -0
  1070. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value.cc +194 -0
  1071. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value.h +338 -0
  1072. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value_input_stream.h +133 -0
  1073. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/bytes_value_output_stream.h +176 -0
  1074. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_list_value.cc +614 -0
  1075. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_list_value.h +423 -0
  1076. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_map_value.cc +823 -0
  1077. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_map_value.h +469 -0
  1078. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_struct_value.cc +385 -0
  1079. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_struct_value.h +459 -0
  1080. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/custom_value.h +84 -0
  1081. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/double_value.cc +137 -0
  1082. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/double_value.h +101 -0
  1083. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/duration_value.cc +105 -0
  1084. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/duration_value.h +147 -0
  1085. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/enum_value.h +49 -0
  1086. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/error_value.cc +194 -0
  1087. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/error_value.h +276 -0
  1088. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/int_value.cc +111 -0
  1089. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/int_value.h +117 -0
  1090. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_list_value.cc +76 -0
  1091. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_list_value.h +167 -0
  1092. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_map_value.cc +76 -0
  1093. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_map_value.h +185 -0
  1094. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_struct_value.cc +43 -0
  1095. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/legacy_struct_value.h +183 -0
  1096. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value.cc +304 -0
  1097. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value.h +284 -0
  1098. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value_builder.h +110 -0
  1099. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/list_value_variant.h +214 -0
  1100. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value.cc +378 -0
  1101. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value.h +323 -0
  1102. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value_builder.h +110 -0
  1103. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/map_value_variant.h +212 -0
  1104. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/message_value.cc +306 -0
  1105. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/message_value.h +268 -0
  1106. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/null_value.cc +78 -0
  1107. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/null_value.h +96 -0
  1108. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/opaque_value.cc +194 -0
  1109. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/opaque_value.h +338 -0
  1110. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/optional_value.cc +435 -0
  1111. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/optional_value.h +207 -0
  1112. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_list_value.cc +486 -0
  1113. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_list_value.h +229 -0
  1114. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_map_value.cc +439 -0
  1115. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_map_value.h +250 -0
  1116. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_value.cc +103 -0
  1117. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_json_value.h +40 -0
  1118. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_map_field_value.cc +583 -0
  1119. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_map_field_value.h +242 -0
  1120. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_message_value.cc +411 -0
  1121. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_message_value.h +249 -0
  1122. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_repeated_field_value.cc +365 -0
  1123. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/parsed_repeated_field_value.h +220 -0
  1124. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/string_value.cc +1518 -0
  1125. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/string_value.h +489 -0
  1126. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value.cc +390 -0
  1127. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value.h +373 -0
  1128. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value_builder.cc +1552 -0
  1129. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value_builder.h +35 -0
  1130. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/struct_value_variant.h +205 -0
  1131. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/timestamp_value.cc +105 -0
  1132. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/timestamp_value.h +146 -0
  1133. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/type_value.cc +72 -0
  1134. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/type_value.h +108 -0
  1135. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/uint_value.cc +110 -0
  1136. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/uint_value.h +119 -0
  1137. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/unknown_value.cc +66 -0
  1138. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/unknown_value.h +121 -0
  1139. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_builder.cc +1432 -0
  1140. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_builder.h +36 -0
  1141. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_variant.cc +537 -0
  1142. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/value_variant.h +831 -0
  1143. data/ext/protovalidate/sys/third_party/cel-cpp/common/values/values.h +351 -0
  1144. data/ext/protovalidate/sys/third_party/cel-cpp/compiler/compiler.h +195 -0
  1145. data/ext/protovalidate/sys/third_party/cel-cpp/compiler/compiler_factory.h +70 -0
  1146. data/ext/protovalidate/sys/third_party/cel-cpp/compiler/compiler_library_subset_factory.h +80 -0
  1147. data/ext/protovalidate/sys/third_party/cel-cpp/compiler/optional.h +28 -0
  1148. data/ext/protovalidate/sys/third_party/cel-cpp/compiler/standard_library.h +27 -0
  1149. data/ext/protovalidate/sys/third_party/cel-cpp/env/config.h +173 -0
  1150. data/ext/protovalidate/sys/third_party/cel-cpp/env/env.h +76 -0
  1151. data/ext/protovalidate/sys/third_party/cel-cpp/env/env_runtime.h +85 -0
  1152. data/ext/protovalidate/sys/third_party/cel-cpp/env/env_std_extensions.h +42 -0
  1153. data/ext/protovalidate/sys/third_party/cel-cpp/env/env_yaml.h +74 -0
  1154. data/ext/protovalidate/sys/third_party/cel-cpp/env/internal/ext_registry.h +74 -0
  1155. data/ext/protovalidate/sys/third_party/cel-cpp/env/internal/runtime_ext_registry.h +84 -0
  1156. data/ext/protovalidate/sys/third_party/cel-cpp/env/runtime_std_extensions.h +46 -0
  1157. data/ext/protovalidate/sys/third_party/cel-cpp/env/type_info.h +42 -0
  1158. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/cel_expression_builder_flat_impl.cc +111 -0
  1159. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/cel_expression_builder_flat_impl.h +108 -0
  1160. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/check_ast_extensions.cc +58 -0
  1161. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/check_ast_extensions.h +34 -0
  1162. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/comprehension_vulnerability_check.cc +275 -0
  1163. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/comprehension_vulnerability_check.h +51 -0
  1164. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/constant_folding.cc +280 -0
  1165. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/constant_folding.h +42 -0
  1166. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder.cc +2667 -0
  1167. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder.h +104 -0
  1168. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder_extensions.cc +474 -0
  1169. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/flat_expr_builder_extensions.h +481 -0
  1170. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/instrumentation.h +60 -0
  1171. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/qualified_reference_resolver.cc +359 -0
  1172. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/qualified_reference_resolver.h +53 -0
  1173. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/regex_precompilation_optimization.cc +274 -0
  1174. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/regex_precompilation_optimization.h +29 -0
  1175. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/resolver.cc +222 -0
  1176. data/ext/protovalidate/sys/third_party/cel-cpp/eval/compiler/resolver.h +127 -0
  1177. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_trail.cc +28 -0
  1178. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_trail.h +65 -0
  1179. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_utility.cc +260 -0
  1180. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/attribute_utility.h +179 -0
  1181. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/cel_expression_flat_impl.cc +147 -0
  1182. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/cel_expression_flat_impl.h +175 -0
  1183. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/compiler_constant_step.cc +37 -0
  1184. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/compiler_constant_step.h +76 -0
  1185. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/comprehension_slots.h +153 -0
  1186. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/comprehension_step.cc +685 -0
  1187. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/comprehension_step.h +119 -0
  1188. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/const_value_step.h +31 -0
  1189. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/container_access_step.cc +370 -0
  1190. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/container_access_step.h +26 -0
  1191. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_list_step.cc +283 -0
  1192. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_list_step.h +40 -0
  1193. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_map_step.cc +289 -0
  1194. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_map_step.h +59 -0
  1195. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_struct_step.cc +270 -0
  1196. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/create_struct_step.h +44 -0
  1197. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/direct_expression_step.cc +34 -0
  1198. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/direct_expression_step.h +99 -0
  1199. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/equality_steps.cc +293 -0
  1200. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/equality_steps.h +45 -0
  1201. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_core.cc +178 -0
  1202. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_core.h +516 -0
  1203. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_stack.cc +92 -0
  1204. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/evaluator_stack.h +327 -0
  1205. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/expression_step_base.h +12 -0
  1206. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/function_step.cc +529 -0
  1207. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/function_step.h +48 -0
  1208. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ident_step.cc +174 -0
  1209. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ident_step.h +31 -0
  1210. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/iterator_stack.h +77 -0
  1211. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/jump_step.cc +172 -0
  1212. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/jump_step.h +74 -0
  1213. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/lazy_init_step.cc +236 -0
  1214. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/lazy_init_step.h +87 -0
  1215. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/logic_step.cc +487 -0
  1216. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/logic_step.h +49 -0
  1217. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/optional_or_step.cc +305 -0
  1218. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/optional_or_step.h +51 -0
  1219. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/regex_match_step.cc +135 -0
  1220. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/regex_match_step.h +37 -0
  1221. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/select_step.cc +581 -0
  1222. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/select_step.h +33 -0
  1223. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/shadowable_value_step.cc +98 -0
  1224. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/shadowable_value_step.h +26 -0
  1225. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ternary_step.cc +194 -0
  1226. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/ternary_step.h +26 -0
  1227. data/ext/protovalidate/sys/third_party/cel-cpp/eval/eval/trace_step.h +73 -0
  1228. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/adapter_activation_impl.cc +87 -0
  1229. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/adapter_activation_impl.h +68 -0
  1230. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/cel_value_equal.cc +242 -0
  1231. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/cel_value_equal.h +34 -0
  1232. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/errors.cc +64 -0
  1233. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/errors.h +54 -0
  1234. data/ext/protovalidate/sys/third_party/cel-cpp/eval/internal/interop.h +20 -0
  1235. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/activation.cc +119 -0
  1236. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/activation.h +170 -0
  1237. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/activation_bind_helper.h +60 -0
  1238. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_rewrite.h +175 -0
  1239. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_traverse.h +110 -0
  1240. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_visitor.h +185 -0
  1241. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/ast_visitor_base.h +109 -0
  1242. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/base_activation.h +75 -0
  1243. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/builtin_func_registrar.cc +65 -0
  1244. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/builtin_func_registrar.h +30 -0
  1245. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_attribute.cc +90 -0
  1246. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_attribute.h +64 -0
  1247. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_builtins.h +19 -0
  1248. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_expr_builder_factory.cc +146 -0
  1249. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_expr_builder_factory.h +43 -0
  1250. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_expression.h +144 -0
  1251. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function.cc +76 -0
  1252. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function.h +80 -0
  1253. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_adapter.h +121 -0
  1254. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_adapter_impl.h +407 -0
  1255. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_registry.cc +122 -0
  1256. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_function_registry.h +146 -0
  1257. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_number.cc +31 -0
  1258. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_number.h +36 -0
  1259. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_options.cc +51 -0
  1260. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_options.h +233 -0
  1261. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_type_registry.cc +64 -0
  1262. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_type_registry.h +145 -0
  1263. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value.cc +412 -0
  1264. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value.h +770 -0
  1265. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value_internal.h +103 -0
  1266. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/cel_value_producer.h +25 -0
  1267. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/comparison_functions.h +36 -0
  1268. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/container_function_registrar.h +36 -0
  1269. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/container_backed_list_impl.h +44 -0
  1270. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/container_backed_map_impl.cc +131 -0
  1271. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/container_backed_map_impl.h +70 -0
  1272. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_access.cc +85 -0
  1273. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_access.h +70 -0
  1274. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_backed_list_impl.h +33 -0
  1275. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/field_backed_map_impl.h +35 -0
  1276. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_list_impl.cc +36 -0
  1277. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_list_impl.h +59 -0
  1278. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_map_impl.cc +298 -0
  1279. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/containers/internal_field_backed_map_impl.h +77 -0
  1280. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/equality_function_registrar.h +44 -0
  1281. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/extension_func_registrar.h +20 -0
  1282. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/logical_function_registrar.h +36 -0
  1283. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/message_wrapper.h +139 -0
  1284. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/portable_cel_function_adapter.h +72 -0
  1285. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/set_util.h +43 -0
  1286. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/source_position.h +65 -0
  1287. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/string_extension_func_registrar.cc +29 -0
  1288. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/string_extension_func_registrar.h +31 -0
  1289. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_descriptor_pool_builder.h +40 -0
  1290. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrap_util.cc +1479 -0
  1291. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrap_util.h +45 -0
  1292. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrapper.cc +60 -0
  1293. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/cel_proto_wrapper.h +53 -0
  1294. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/field_access_impl.cc +746 -0
  1295. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/field_access_impl.h +80 -0
  1296. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_adapter.h +177 -0
  1297. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_info_apis.h +108 -0
  1298. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_provider.cc +232 -0
  1299. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/legacy_type_provider.h +79 -0
  1300. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/proto_message_type_adapter.cc +708 -0
  1301. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/proto_message_type_adapter.h +137 -0
  1302. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/protobuf_descriptor_type_provider.cc +70 -0
  1303. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/protobuf_descriptor_type_provider.h +67 -0
  1304. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/protobuf_value_factory.h +36 -0
  1305. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/structs/trivial_legacy_type_info.h +54 -0
  1306. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/transform_utility.h +39 -0
  1307. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_attribute_set.h +20 -0
  1308. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_function_result_set.cc +1 -0
  1309. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_function_result_set.h +27 -0
  1310. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/unknown_set.h +22 -0
  1311. data/ext/protovalidate/sys/third_party/cel-cpp/eval/public/value_export_util.h +28 -0
  1312. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/bindings_ext.h +46 -0
  1313. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/comprehensions_v2.h +39 -0
  1314. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/comprehensions_v2_functions.h +35 -0
  1315. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/comprehensions_v2_macros.h +34 -0
  1316. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/encoders.h +45 -0
  1317. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/formatting.cc +570 -0
  1318. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/formatting.h +39 -0
  1319. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/lists_functions.h +138 -0
  1320. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/math_ext.h +39 -0
  1321. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/math_ext_decls.h +33 -0
  1322. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/math_ext_macros.h +38 -0
  1323. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/proto_ext.h +42 -0
  1324. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/ast_converters.h +56 -0
  1325. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/bind_proto_to_activation.h +38 -0
  1326. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/enum_adapter.h +30 -0
  1327. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/map_reflection.cc +132 -0
  1328. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/map_reflection.h +67 -0
  1329. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/qualify.cc +457 -0
  1330. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/internal/qualify.h +117 -0
  1331. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/memory_manager.cc +37 -0
  1332. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/memory_manager.h +56 -0
  1333. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/runtime_adapter.h +51 -0
  1334. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/value.h +98 -0
  1335. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/protobuf/value_testing.h +78 -0
  1336. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/regex_ext.h +131 -0
  1337. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/regex_functions.h +52 -0
  1338. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/select_optimization.cc +958 -0
  1339. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/select_optimization.h +90 -0
  1340. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/sets_functions.h +45 -0
  1341. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/strings.cc +432 -0
  1342. data/ext/protovalidate/sys/third_party/cel-cpp/extensions/strings.h +73 -0
  1343. data/ext/protovalidate/sys/third_party/cel-cpp/internal/align.h +95 -0
  1344. data/ext/protovalidate/sys/third_party/cel-cpp/internal/benchmark.h +20 -0
  1345. data/ext/protovalidate/sys/third_party/cel-cpp/internal/casts.h +50 -0
  1346. data/ext/protovalidate/sys/third_party/cel-cpp/internal/empty_descriptors.cc +73 -0
  1347. data/ext/protovalidate/sys/third_party/cel-cpp/internal/empty_descriptors.h +31 -0
  1348. data/ext/protovalidate/sys/third_party/cel-cpp/internal/equals_text_proto.h +65 -0
  1349. data/ext/protovalidate/sys/third_party/cel-cpp/internal/exceptions.h +35 -0
  1350. data/ext/protovalidate/sys/third_party/cel-cpp/internal/json.cc +2041 -0
  1351. data/ext/protovalidate/sys/third_party/cel-cpp/internal/json.h +141 -0
  1352. data/ext/protovalidate/sys/third_party/cel-cpp/internal/lexis.cc +79 -0
  1353. data/ext/protovalidate/sys/third_party/cel-cpp/internal/lexis.h +32 -0
  1354. data/ext/protovalidate/sys/third_party/cel-cpp/internal/manual.h +91 -0
  1355. data/ext/protovalidate/sys/third_party/cel-cpp/internal/message_equality.cc +1490 -0
  1356. data/ext/protovalidate/sys/third_party/cel-cpp/internal/message_equality.h +54 -0
  1357. data/ext/protovalidate/sys/third_party/cel-cpp/internal/message_type_name.h +56 -0
  1358. data/ext/protovalidate/sys/third_party/cel-cpp/internal/minimal_descriptor_database.h +32 -0
  1359. data/ext/protovalidate/sys/third_party/cel-cpp/internal/minimal_descriptor_pool.h +40 -0
  1360. data/ext/protovalidate/sys/third_party/cel-cpp/internal/names.h +26 -0
  1361. data/ext/protovalidate/sys/third_party/cel-cpp/internal/new.cc +142 -0
  1362. data/ext/protovalidate/sys/third_party/cel-cpp/internal/new.h +61 -0
  1363. data/ext/protovalidate/sys/third_party/cel-cpp/internal/noop_delete.h +53 -0
  1364. data/ext/protovalidate/sys/third_party/cel-cpp/internal/number.h +299 -0
  1365. data/ext/protovalidate/sys/third_party/cel-cpp/internal/overflow.cc +339 -0
  1366. data/ext/protovalidate/sys/third_party/cel-cpp/internal/overflow.h +178 -0
  1367. data/ext/protovalidate/sys/third_party/cel-cpp/internal/parse_text_proto.h +121 -0
  1368. data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_file_util.h +73 -0
  1369. data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_matchers.h +140 -0
  1370. data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_time_encoding.cc +103 -0
  1371. data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_time_encoding.h +49 -0
  1372. data/ext/protovalidate/sys/third_party/cel-cpp/internal/proto_util.h +87 -0
  1373. data/ext/protovalidate/sys/third_party/cel-cpp/internal/protobuf_runtime_version.h +32 -0
  1374. data/ext/protovalidate/sys/third_party/cel-cpp/internal/re2_options.h +61 -0
  1375. data/ext/protovalidate/sys/third_party/cel-cpp/internal/runfiles.h +36 -0
  1376. data/ext/protovalidate/sys/third_party/cel-cpp/internal/status_builder.h +114 -0
  1377. data/ext/protovalidate/sys/third_party/cel-cpp/internal/status_macros.h +152 -0
  1378. data/ext/protovalidate/sys/third_party/cel-cpp/internal/string_pool.cc +79 -0
  1379. data/ext/protovalidate/sys/third_party/cel-cpp/internal/string_pool.h +59 -0
  1380. data/ext/protovalidate/sys/third_party/cel-cpp/internal/strings.cc +693 -0
  1381. data/ext/protovalidate/sys/third_party/cel-cpp/internal/strings.h +90 -0
  1382. data/ext/protovalidate/sys/third_party/cel-cpp/internal/testing.h +44 -0
  1383. data/ext/protovalidate/sys/third_party/cel-cpp/internal/testing_descriptor_pool.h +35 -0
  1384. data/ext/protovalidate/sys/third_party/cel-cpp/internal/testing_message_factory.h +31 -0
  1385. data/ext/protovalidate/sys/third_party/cel-cpp/internal/time.cc +198 -0
  1386. data/ext/protovalidate/sys/third_party/cel-cpp/internal/time.h +65 -0
  1387. data/ext/protovalidate/sys/third_party/cel-cpp/internal/to_address.h +68 -0
  1388. data/ext/protovalidate/sys/third_party/cel-cpp/internal/unicode.h +28 -0
  1389. data/ext/protovalidate/sys/third_party/cel-cpp/internal/utf8.cc +526 -0
  1390. data/ext/protovalidate/sys/third_party/cel-cpp/internal/utf8.h +82 -0
  1391. data/ext/protovalidate/sys/third_party/cel-cpp/internal/well_known_types.cc +2181 -0
  1392. data/ext/protovalidate/sys/third_party/cel-cpp/internal/well_known_types.h +1593 -0
  1393. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/ast_factory.cc +320 -0
  1394. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/ast_factory.h +174 -0
  1395. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/ast_factory_interface.h +130 -0
  1396. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/lexer.cc +711 -0
  1397. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/lexer.h +286 -0
  1398. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/options.h +29 -0
  1399. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser.cc +226 -0
  1400. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser.h +110 -0
  1401. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser_worker.cc +261 -0
  1402. data/ext/protovalidate/sys/third_party/cel-cpp/parser/internal/pratt_parser_worker.h +1143 -0
  1403. data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro.cc +561 -0
  1404. data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro.h +229 -0
  1405. data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_expr_factory.cc +128 -0
  1406. data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_expr_factory.h +333 -0
  1407. data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_registry.cc +87 -0
  1408. data/ext/protovalidate/sys/third_party/cel-cpp/parser/macro_registry.h +59 -0
  1409. data/ext/protovalidate/sys/third_party/cel-cpp/parser/options.h +115 -0
  1410. data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser.cc +1995 -0
  1411. data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser.h +102 -0
  1412. data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser_interface.h +160 -0
  1413. data/ext/protovalidate/sys/third_party/cel-cpp/parser/parser_subset_factory.h +41 -0
  1414. data/ext/protovalidate/sys/third_party/cel-cpp/parser/source_factory.h +47 -0
  1415. data/ext/protovalidate/sys/third_party/cel-cpp/parser/standard_macros.h +31 -0
  1416. data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy.h +333 -0
  1417. data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_parse_context.h +65 -0
  1418. data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_parse_result.h +105 -0
  1419. data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_parser.h +40 -0
  1420. data/ext/protovalidate/sys/third_party/cel-cpp/policy/cel_policy_validation_result.h +84 -0
  1421. data/ext/protovalidate/sys/third_party/cel-cpp/policy/compiler.h +50 -0
  1422. data/ext/protovalidate/sys/third_party/cel-cpp/policy/internal/issue_reporter.h +57 -0
  1423. data/ext/protovalidate/sys/third_party/cel-cpp/policy/internal/optimizer_expr_factory.h +419 -0
  1424. data/ext/protovalidate/sys/third_party/cel-cpp/policy/internal/yaml_string_element_scanner.h +40 -0
  1425. data/ext/protovalidate/sys/third_party/cel-cpp/policy/test_util.h +33 -0
  1426. data/ext/protovalidate/sys/third_party/cel-cpp/policy/yaml_policy_parser.h +135 -0
  1427. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/activation.cc +141 -0
  1428. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/activation.h +184 -0
  1429. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/activation_interface.h +109 -0
  1430. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/bind_proto_to_activation.h +174 -0
  1431. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/comprehension_vulnerability_check.h +35 -0
  1432. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/constant_folding.h +69 -0
  1433. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/embedder_context.h +147 -0
  1434. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function.h +115 -0
  1435. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_adapter.h +830 -0
  1436. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_overload_reference.h +34 -0
  1437. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_provider.h +46 -0
  1438. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_registry.cc +263 -0
  1439. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/function_registry.h +160 -0
  1440. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/activation_attribute_matcher_access.cc +61 -0
  1441. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/activation_attribute_matcher_access.h +60 -0
  1442. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/attribute_matcher.h +48 -0
  1443. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/convert_constant.cc +78 -0
  1444. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/convert_constant.h +39 -0
  1445. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/errors.cc +69 -0
  1446. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/errors.h +71 -0
  1447. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/function_adapter.h +232 -0
  1448. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/issue_collector.h +64 -0
  1449. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/legacy_runtime_type_provider.h +37 -0
  1450. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_env.cc +73 -0
  1451. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_env.h +134 -0
  1452. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_env_testing.h +60 -0
  1453. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_friend_access.h +45 -0
  1454. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_impl.cc +159 -0
  1455. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_impl.h +125 -0
  1456. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_type_provider.cc +96 -0
  1457. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/internal/runtime_type_provider.h +66 -0
  1458. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/optional_types.h +152 -0
  1459. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/reference_resolver.h +46 -0
  1460. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/regex_precompilation.h +32 -0
  1461. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/register_function_helper.h +99 -0
  1462. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime.h +229 -0
  1463. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_builder.h +101 -0
  1464. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_builder_factory.h +65 -0
  1465. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_issue.h +88 -0
  1466. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/runtime_options.h +209 -0
  1467. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/arithmetic_functions.cc +233 -0
  1468. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/arithmetic_functions.h +35 -0
  1469. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/comparison_functions.cc +272 -0
  1470. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/comparison_functions.h +36 -0
  1471. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_functions.cc +136 -0
  1472. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_functions.h +36 -0
  1473. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_membership_functions.cc +331 -0
  1474. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/container_membership_functions.h +34 -0
  1475. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/equality_functions.cc +612 -0
  1476. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/equality_functions.h +60 -0
  1477. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/logical_functions.cc +66 -0
  1478. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/logical_functions.h +36 -0
  1479. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/regex_functions.cc +56 -0
  1480. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/regex_functions.h +38 -0
  1481. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/string_functions.cc +140 -0
  1482. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/string_functions.h +34 -0
  1483. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/time_functions.cc +499 -0
  1484. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/time_functions.h +56 -0
  1485. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/type_conversion_functions.cc +470 -0
  1486. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard/type_conversion_functions.h +34 -0
  1487. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard_functions.h +33 -0
  1488. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/standard_runtime_builder_factory.h +43 -0
  1489. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/type_registry.cc +84 -0
  1490. data/ext/protovalidate/sys/third_party/cel-cpp/runtime/type_registry.h +155 -0
  1491. data/ext/protovalidate/sys/third_party/cel-cpp/tools/branch_coverage.h +68 -0
  1492. data/ext/protovalidate/sys/third_party/cel-cpp/tools/cel_field_extractor.h +70 -0
  1493. data/ext/protovalidate/sys/third_party/cel-cpp/tools/cel_unparser.h +60 -0
  1494. data/ext/protovalidate/sys/third_party/cel-cpp/tools/descriptor_pool_builder.h +93 -0
  1495. data/ext/protovalidate/sys/third_party/cel-cpp/tools/flatbuffers_backed_impl.h +58 -0
  1496. data/ext/protovalidate/sys/third_party/cel-cpp/tools/navigable_ast.h +169 -0
  1497. data/ext/protovalidate/sys/third_party/cel-cpp/tools/proto_to_predicate.h +48 -0
  1498. data/ext/protovalidate/sys/third_party/cel-cpp/validator/ast_depth_validator.h +27 -0
  1499. data/ext/protovalidate/sys/third_party/cel-cpp/validator/comprehension_nesting_validator.h +31 -0
  1500. data/ext/protovalidate/sys/third_party/cel-cpp/validator/homogeneous_literal_validator.h +38 -0
  1501. data/ext/protovalidate/sys/third_party/cel-cpp/validator/regex_validator.h +53 -0
  1502. data/ext/protovalidate/sys/third_party/cel-cpp/validator/timestamp_literal_validator.h +29 -0
  1503. data/ext/protovalidate/sys/third_party/cel-cpp/validator/validator.cc +85 -0
  1504. data/ext/protovalidate/sys/third_party/cel-cpp/validator/validator.h +151 -0
  1505. data/ext/protovalidate/sys/third_party/protobuf/LICENSE +32 -0
  1506. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.cc +65 -0
  1507. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.h +161 -0
  1508. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.pb.cc +528 -0
  1509. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any.pb.h +516 -0
  1510. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/any_lite.cc +95 -0
  1511. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/api.pb.cc +1959 -0
  1512. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/api.pb.h +1985 -0
  1513. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena.cc +1004 -0
  1514. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena.h +1238 -0
  1515. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_align.cc +21 -0
  1516. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_align.h +199 -0
  1517. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_allocation_policy.h +102 -0
  1518. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_cleanup.h +108 -0
  1519. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arena_test_util.h +91 -0
  1520. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenastring.cc +290 -0
  1521. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenastring.h +545 -0
  1522. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenaz_sampler.cc +227 -0
  1523. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/arenaz_sampler.h +238 -0
  1524. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.h +105 -0
  1525. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/code_generator.h +256 -0
  1526. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.h +77 -0
  1527. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h +517 -0
  1528. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.h +162 -0
  1529. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/importer.cc +594 -0
  1530. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/importer.h +338 -0
  1531. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h +144 -0
  1532. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/notices.h +242 -0
  1533. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/package_info.h +40 -0
  1534. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/parser.cc +2716 -0
  1535. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/parser.h +642 -0
  1536. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/plugin.h +73 -0
  1537. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h +2320 -0
  1538. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/retention.h +70 -0
  1539. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/scc.h +155 -0
  1540. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/subprocess.h +91 -0
  1541. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/versions.h +78 -0
  1542. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/compiler/zip_writer.h +45 -0
  1543. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/cpp_edition_defaults.h +12 -0
  1544. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/cpp_features.pb.cc +539 -0
  1545. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/cpp_features.pb.h +630 -0
  1546. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.cc +10801 -0
  1547. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.h +3417 -0
  1548. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.pb.cc +18982 -0
  1549. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor.pb.h +23170 -0
  1550. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_database.cc +1102 -0
  1551. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_database.h +423 -0
  1552. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_legacy.h +32 -0
  1553. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_lite.h +110 -0
  1554. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_test_utils.h +129 -0
  1555. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/descriptor_visitor.h +187 -0
  1556. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/duration.pb.cc +481 -0
  1557. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/duration.pb.h +367 -0
  1558. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/dynamic_message.cc +1104 -0
  1559. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/dynamic_message.h +217 -0
  1560. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/empty.pb.cc +285 -0
  1561. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/empty.pb.h +245 -0
  1562. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/endian.h +192 -0
  1563. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/explicitly_constructed.h +71 -0
  1564. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set.cc +1925 -0
  1565. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set.h +1886 -0
  1566. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set_heavy.cc +459 -0
  1567. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/extension_set_inl.h +274 -0
  1568. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/feature_resolver.cc +637 -0
  1569. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/feature_resolver.h +108 -0
  1570. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_access_listener.h +166 -0
  1571. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_mask.pb.cc +472 -0
  1572. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_mask.pb.h +396 -0
  1573. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/field_with_arena.h +110 -0
  1574. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_enum_reflection.h +187 -0
  1575. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_enum_util.cc +223 -0
  1576. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_enum_util.h +185 -0
  1577. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_bases.cc +88 -0
  1578. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_bases.h +68 -0
  1579. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_reflection.cc +4185 -0
  1580. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_reflection.h +372 -0
  1581. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h +615 -0
  1582. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc +105 -0
  1583. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc +960 -0
  1584. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.h +193 -0
  1585. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h +1229 -0
  1586. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc +3308 -0
  1587. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_util.cc +434 -0
  1588. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/generated_message_util.h +445 -0
  1589. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/has_bits.h +138 -0
  1590. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/implicit_weak_message.cc +139 -0
  1591. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/implicit_weak_message.h +266 -0
  1592. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/inlined_string_field.cc +144 -0
  1593. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/inlined_string_field.h +379 -0
  1594. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_feature_helper.cc +28 -0
  1595. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_feature_helper.h +130 -0
  1596. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_metadata_locator.h +291 -0
  1597. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_visibility.h +55 -0
  1598. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/internal_visibility_for_testing.h +27 -0
  1599. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/coded_stream.cc +1045 -0
  1600. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/coded_stream.h +1885 -0
  1601. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc +333 -0
  1602. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/gzip_stream.h +189 -0
  1603. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/io_win32.cc +450 -0
  1604. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/io_win32.h +118 -0
  1605. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/package_info.h +30 -0
  1606. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/printer.cc +842 -0
  1607. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/printer.h +1183 -0
  1608. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/strtod.cc +260 -0
  1609. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/strtod.h +57 -0
  1610. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream.h +185 -0
  1611. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/tokenizer.cc +1262 -0
  1612. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/tokenizer.h +441 -0
  1613. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc +45 -0
  1614. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.h +59 -0
  1615. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc +128 -0
  1616. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h +269 -0
  1617. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc +354 -0
  1618. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h +319 -0
  1619. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc +699 -0
  1620. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h +533 -0
  1621. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/descriptor_traits.h +510 -0
  1622. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/lexer.cc +512 -0
  1623. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/lexer.h +341 -0
  1624. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/message_path.cc +46 -0
  1625. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/message_path.h +61 -0
  1626. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/parser.cc +1437 -0
  1627. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/parser.h +37 -0
  1628. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/parser_traits.h +400 -0
  1629. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/unparser.cc +915 -0
  1630. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/unparser.h +38 -0
  1631. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/unparser_traits.h +414 -0
  1632. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.cc +577 -0
  1633. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.h +246 -0
  1634. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/writer.cc +307 -0
  1635. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/writer.h +214 -0
  1636. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc +152 -0
  1637. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.h +338 -0
  1638. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/json.cc +137 -0
  1639. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/json/json.h +200 -0
  1640. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map.cc +297 -0
  1641. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map.h +1787 -0
  1642. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_entry.h +139 -0
  1643. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_field.cc +597 -0
  1644. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_field.h +925 -0
  1645. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_field_lite.h +124 -0
  1646. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_test.inc +4427 -0
  1647. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_test_util.h +617 -0
  1648. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/map_type_handler.h +374 -0
  1649. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message.cc +745 -0
  1650. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message.h +1936 -0
  1651. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_lite.cc +807 -0
  1652. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_lite.h +1861 -0
  1653. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_unittest.inc +2302 -0
  1654. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/message_unittest_legacy_apis.inc +98 -0
  1655. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/metadata.h +13 -0
  1656. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/metadata_lite.h +271 -0
  1657. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/micro_string.cc +376 -0
  1658. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/micro_string.h +649 -0
  1659. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/os_macros_restore.inc +97 -0
  1660. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/os_macros_undef.inc +166 -0
  1661. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/package_info.h +43 -0
  1662. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/parse_context.cc +850 -0
  1663. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/parse_context.h +1883 -0
  1664. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port.cc +131 -0
  1665. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port.h +908 -0
  1666. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port_def.inc +820 -0
  1667. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/port_undef.inc +97 -0
  1668. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/proto3_lite_unittest.inc +127 -0
  1669. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/raw_ptr.cc +29 -0
  1670. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/raw_ptr.h +64 -0
  1671. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection.h +603 -0
  1672. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_internal.h +313 -0
  1673. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_mode.cc +36 -0
  1674. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_mode.h +144 -0
  1675. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_ops.cc +456 -0
  1676. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_ops.h +67 -0
  1677. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_tester.h +127 -0
  1678. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_visit_field_info.h +1378 -0
  1679. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/reflection_visit_fields.h +511 -0
  1680. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field.cc +76 -0
  1681. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field.h +1814 -0
  1682. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_proxy.h +697 -0
  1683. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_proxy_iterator.h +236 -0
  1684. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_proxy_traits.h +100 -0
  1685. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.inc +687 -0
  1686. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc +251 -0
  1687. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/repeated_ptr_field.h +2706 -0
  1688. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/runtime_version.h +27 -0
  1689. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/serial_arena.h +447 -0
  1690. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/service.cc +22 -0
  1691. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/service.h +271 -0
  1692. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/source_context.pb.cc +463 -0
  1693. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/source_context.pb.h +376 -0
  1694. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/string_block.h +181 -0
  1695. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/string_member_robber.h +17 -0
  1696. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/struct.pb.cc +1663 -0
  1697. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/struct.pb.h +1426 -0
  1698. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/callback.h +584 -0
  1699. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/common.cc +121 -0
  1700. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/common.h +94 -0
  1701. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/platform_macros.h +115 -0
  1702. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/port.h +228 -0
  1703. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/stubs/status_macros.h +72 -0
  1704. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/symbol_checker.cc +219 -0
  1705. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/symbol_checker.h +142 -0
  1706. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_textproto.h +54 -0
  1707. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_util.h +3897 -0
  1708. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_util2.h +70 -0
  1709. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/test_util_lite.h +86 -0
  1710. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/text_format.cc +3324 -0
  1711. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/text_format.h +925 -0
  1712. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/thread_safe_arena.h +297 -0
  1713. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/timestamp.pb.cc +481 -0
  1714. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/timestamp.pb.h +367 -0
  1715. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/type.pb.cc +3129 -0
  1716. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/type.pb.h +3343 -0
  1717. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/unknown_field_set.cc +351 -0
  1718. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/unknown_field_set.h +464 -0
  1719. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc +107 -0
  1720. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/delimited_message_util.h +85 -0
  1721. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_comparator.cc +237 -0
  1722. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_comparator.h +256 -0
  1723. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_mask_util.cc +754 -0
  1724. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/field_mask_util.h +242 -0
  1725. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/internal_timeval.h +28 -0
  1726. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/json_util.h +34 -0
  1727. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/message_differencer.cc +2372 -0
  1728. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/message_differencer.h +1002 -0
  1729. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/package_info.h +23 -0
  1730. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/python/field_mask_util_clif_aux.h +32 -0
  1731. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/time_util.cc +563 -0
  1732. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/time_util.h +297 -0
  1733. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/type_resolver.h +56 -0
  1734. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc +436 -0
  1735. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/util/type_resolver_util.h +45 -0
  1736. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/varint_shuffle.h +165 -0
  1737. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format.cc +1785 -0
  1738. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format.h +374 -0
  1739. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format_lite.cc +901 -0
  1740. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format_lite.h +1720 -0
  1741. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wire_format_unittest.h +1726 -0
  1742. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wrappers.pb.cc +3203 -0
  1743. data/ext/protovalidate/sys/third_party/protobuf/src/google/protobuf/wrappers.pb.h +2317 -0
  1744. data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range.c +207 -0
  1745. data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range.h +23 -0
  1746. data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range_neon.inc +117 -0
  1747. data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_range_sse.inc +272 -0
  1748. data/ext/protovalidate/sys/third_party/protobuf/third_party/utf8_range/utf8_validity.h +30 -0
  1749. data/ext/protovalidate/sys/third_party/protovalidate-cc/LICENSE +201 -0
  1750. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/cel_rules.h +116 -0
  1751. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/cel_validation_rules.cc +166 -0
  1752. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/cel_validation_rules.h +72 -0
  1753. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/extra_func.cc +482 -0
  1754. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/extra_func.h +31 -0
  1755. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/field_rules.cc +388 -0
  1756. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/field_rules.h +92 -0
  1757. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv4.cc +69 -0
  1758. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv4.h +58 -0
  1759. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv6.cc +143 -0
  1760. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/ipv6.h +51 -0
  1761. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/parser_common.h +256 -0
  1762. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/uri.cc +469 -0
  1763. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/lib/uri.h +25 -0
  1764. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_factory.cc +31 -0
  1765. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_factory.h +43 -0
  1766. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_rules.cc +114 -0
  1767. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/message_rules.h +39 -0
  1768. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/proto_field.h +155 -0
  1769. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/rules.cc +437 -0
  1770. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/rules.h +221 -0
  1771. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/internal/validation_rules.h +153 -0
  1772. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/validator.cc +190 -0
  1773. data/ext/protovalidate/sys/third_party/protovalidate-cc/buf/validate/validator.h +156 -0
  1774. data/ext/protovalidate/sys/third_party/re2/LICENSE +27 -0
  1775. data/ext/protovalidate/sys/third_party/re2/re2/bitmap256.cc +43 -0
  1776. data/ext/protovalidate/sys/third_party/re2/re2/bitmap256.h +88 -0
  1777. data/ext/protovalidate/sys/third_party/re2/re2/bitstate.cc +389 -0
  1778. data/ext/protovalidate/sys/third_party/re2/re2/compile.cc +1265 -0
  1779. data/ext/protovalidate/sys/third_party/re2/re2/dfa.cc +2135 -0
  1780. data/ext/protovalidate/sys/third_party/re2/re2/filtered_re2.cc +138 -0
  1781. data/ext/protovalidate/sys/third_party/re2/re2/filtered_re2.h +115 -0
  1782. data/ext/protovalidate/sys/third_party/re2/re2/mimics_pcre.cc +196 -0
  1783. data/ext/protovalidate/sys/third_party/re2/re2/nfa.cc +714 -0
  1784. data/ext/protovalidate/sys/third_party/re2/re2/onepass.cc +623 -0
  1785. data/ext/protovalidate/sys/third_party/re2/re2/parse.cc +2529 -0
  1786. data/ext/protovalidate/sys/third_party/re2/re2/perl_groups.cc +119 -0
  1787. data/ext/protovalidate/sys/third_party/re2/re2/pod_array.h +55 -0
  1788. data/ext/protovalidate/sys/third_party/re2/re2/prefilter.cc +711 -0
  1789. data/ext/protovalidate/sys/third_party/re2/re2/prefilter.h +168 -0
  1790. data/ext/protovalidate/sys/third_party/re2/re2/prefilter_tree.cc +376 -0
  1791. data/ext/protovalidate/sys/third_party/re2/re2/prefilter_tree.h +153 -0
  1792. data/ext/protovalidate/sys/third_party/re2/re2/prog.cc +1181 -0
  1793. data/ext/protovalidate/sys/third_party/re2/re2/prog.h +493 -0
  1794. data/ext/protovalidate/sys/third_party/re2/re2/re2.cc +1355 -0
  1795. data/ext/protovalidate/sys/third_party/re2/re2/re2.h +1074 -0
  1796. data/ext/protovalidate/sys/third_party/re2/re2/regexp.cc +1004 -0
  1797. data/ext/protovalidate/sys/third_party/re2/re2/regexp.h +693 -0
  1798. data/ext/protovalidate/sys/third_party/re2/re2/set.cc +185 -0
  1799. data/ext/protovalidate/sys/third_party/re2/re2/set.h +91 -0
  1800. data/ext/protovalidate/sys/third_party/re2/re2/simplify.cc +689 -0
  1801. data/ext/protovalidate/sys/third_party/re2/re2/sparse_array.h +394 -0
  1802. data/ext/protovalidate/sys/third_party/re2/re2/sparse_set.h +266 -0
  1803. data/ext/protovalidate/sys/third_party/re2/re2/stringpiece.h +18 -0
  1804. data/ext/protovalidate/sys/third_party/re2/re2/tostring.cc +351 -0
  1805. data/ext/protovalidate/sys/third_party/re2/re2/unicode_casefold.cc +604 -0
  1806. data/ext/protovalidate/sys/third_party/re2/re2/unicode_casefold.h +77 -0
  1807. data/ext/protovalidate/sys/third_party/re2/re2/unicode_groups.cc +6517 -0
  1808. data/ext/protovalidate/sys/third_party/re2/re2/unicode_groups.h +66 -0
  1809. data/ext/protovalidate/sys/third_party/re2/re2/walker-inl.h +249 -0
  1810. data/ext/protovalidate/sys/third_party/re2/util/malloc_counter.h +19 -0
  1811. data/ext/protovalidate/sys/third_party/re2/util/pcre.h +671 -0
  1812. data/ext/protovalidate/sys/third_party/re2/util/rune.cc +260 -0
  1813. data/ext/protovalidate/sys/third_party/re2/util/strutil.cc +26 -0
  1814. data/ext/protovalidate/sys/third_party/re2/util/strutil.h +16 -0
  1815. data/ext/protovalidate/sys/third_party/re2/util/utf.h +44 -0
  1816. data/ext/protovalidate/sys/versions.json +15 -0
  1817. data/lib/buf/validate/validate_pb.rb +55 -0
  1818. data/lib/protovalidate/errors.rb +32 -0
  1819. data/lib/protovalidate/native.rb +30 -0
  1820. data/lib/protovalidate/validator.rb +96 -0
  1821. data/lib/protovalidate/version.rb +10 -0
  1822. data/lib/protovalidate/violation.rb +115 -0
  1823. data/lib/protovalidate.rb +48 -0
  1824. data/sig/buf/validate/validate_pb.rbs +64 -0
  1825. data/sig/protovalidate/native.rbs +14 -0
  1826. data/sig/protovalidate.rbs +90 -0
  1827. metadata +1900 -0
@@ -0,0 +1,3129 @@
1
+ // Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ // NO CHECKED-IN PROTOBUF GENCODE
3
+ // source: google/protobuf/type.proto
4
+ // Protobuf C++ Version: 7.35.1
5
+
6
+ #include "google/protobuf/type.pb.h"
7
+
8
+ #include <algorithm>
9
+ #include <type_traits>
10
+ #include "google/protobuf/io/coded_stream.h"
11
+ #include "google/protobuf/generated_message_tctable_impl.h"
12
+ #include "google/protobuf/internal_visibility.h"
13
+ #include "google/protobuf/extension_set.h"
14
+ #include "google/protobuf/generated_message_util.h"
15
+ #include "google/protobuf/wire_format_lite.h"
16
+ #include "google/protobuf/descriptor.h"
17
+ #include "google/protobuf/generated_message_reflection.h"
18
+ #include "google/protobuf/reflection_ops.h"
19
+ #include "google/protobuf/wire_format.h"
20
+ // @@protoc_insertion_point(includes)
21
+
22
+ // Must be included last.
23
+ #include "google/protobuf/port_def.inc"
24
+ PROTOBUF_PRAGMA_INIT_SEG
25
+ namespace _pb = ::google::protobuf;
26
+ namespace _pbi = ::google::protobuf::internal;
27
+ namespace _fl = ::google::protobuf::internal::field_layout;
28
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
29
+ namespace {
30
+ PROTOBUF_CONSTINIT ::google::protobuf::internal::ReflectionData
31
+ file_reflection_data[] = {
32
+ // ::google::protobuf::Type
33
+ {&::_pbi::kDescriptorMethods, &::descriptor_table_google_2fprotobuf_2ftype_2eproto, /* tracker*/ nullptr,},
34
+ // ::google::protobuf::Field
35
+ {&::_pbi::kDescriptorMethods, &::descriptor_table_google_2fprotobuf_2ftype_2eproto, /* tracker*/ nullptr,},
36
+ // ::google::protobuf::Enum
37
+ {&::_pbi::kDescriptorMethods, &::descriptor_table_google_2fprotobuf_2ftype_2eproto, /* tracker*/ nullptr,},
38
+ // ::google::protobuf::EnumValue
39
+ {&::_pbi::kDescriptorMethods, &::descriptor_table_google_2fprotobuf_2ftype_2eproto, /* tracker*/ nullptr,},
40
+ // ::google::protobuf::Option
41
+ {&::_pbi::kDescriptorMethods, &::descriptor_table_google_2fprotobuf_2ftype_2eproto, /* tracker*/ nullptr,},
42
+ };
43
+ } // namespace
44
+ #endif
45
+ namespace google {
46
+ namespace protobuf {
47
+ class Option::_Internal {
48
+ public:
49
+ using HasBits = decltype(::std::declval<Option>()._impl_._has_bits_);
50
+ static constexpr ::int32_t kHasBitsOffset =
51
+ 8 * PROTOBUF_FIELD_OFFSET(Option, _impl_._has_bits_);
52
+ };
53
+
54
+ constexpr Option::ParseTableT_ Option::InternalGenerateParseTable_(const ::_pbi::ClassData* class_data) {
55
+ return ParseTableT_{
56
+ {
57
+ PROTOBUF_FIELD_OFFSET(Option, _impl_._has_bits_),
58
+ 0, // no _extensions_
59
+ 2, 8, // max_field_number, fast_idx_mask
60
+ offsetof(ParseTableT_, field_lookup_table),
61
+ 4294967292, // skipmap
62
+ offsetof(ParseTableT_, field_entries),
63
+ 2, // num_field_entries
64
+ 1, // num_aux_entries
65
+ offsetof(ParseTableT_, aux_entries),
66
+ class_data,
67
+ nullptr, // post_loop_handler
68
+ ::_pbi::TcParser::GenericFallback, // fallback
69
+ #ifdef PROTOBUF_PREFETCH_PARSE_TABLE
70
+ ::_pbi::TcParser::GetTable<::google::protobuf::Option>(), // to_prefetch
71
+ #endif // PROTOBUF_PREFETCH_PARSE_TABLE
72
+ }, {{
73
+ // .google.protobuf.Any value = 2;
74
+ {::_pbi::TcParser::FastMtS1,
75
+ {18, 1, 0,
76
+ PROTOBUF_FIELD_OFFSET(Option, _impl_.value_)}},
77
+ // string name = 1;
78
+ {::_pbi::TcParser::FastUS1,
79
+ {10, 0, 0,
80
+ PROTOBUF_FIELD_OFFSET(Option, _impl_.name_)}},
81
+ }}, {{
82
+ 65535, 65535
83
+ }}, {{
84
+ // string name = 1;
85
+ {PROTOBUF_FIELD_OFFSET(Option, _impl_.name_), _Internal::kHasBitsOffset + 0, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
86
+ // .google.protobuf.Any value = 2;
87
+ {PROTOBUF_FIELD_OFFSET(Option, _impl_.value_), _Internal::kHasBitsOffset + 1, 0, (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)},
88
+ }},
89
+ {{
90
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
91
+ {::_pbi::TcParser::GetTable<::google::protobuf::Any>()},
92
+ #else
93
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::Any_globals_},
94
+ #endif
95
+ }},
96
+ {{
97
+ "\26\4\0\0\0\0\0\0"
98
+ "google.protobuf.Option"
99
+ "name"
100
+ }},
101
+ };
102
+ }
103
+
104
+
105
+ inline constexpr Option::Impl_::Impl_(
106
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
107
+ ::_pbi::ConstantInitialized) noexcept
108
+ : _cached_size_{0},
109
+ name_(
110
+ &::google::protobuf::internal::fixed_address_empty_string,
111
+ ::_pbi::ConstantInitialized()),
112
+ value_{nullptr} {}
113
+
114
+ template <typename>
115
+ constexpr Option::Option(::_pbi::ConstantInitialized,
116
+ const ::_pbi::ClassData* PROTOBUF_NONNULL class_data)
117
+ : ::google::protobuf::Message(
118
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
119
+ class_data
120
+ #endif // PROTOBUF_CUSTOM_VTABLE
121
+ ),
122
+ _impl_(internal_visibility(), ::_pbi::ConstantInitialized()) {
123
+ }
124
+ inline void* PROTOBUF_NONNULL Option::PlacementNew_(
125
+ const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
126
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena) {
127
+ return ::new (mem) Option(arena);
128
+ }
129
+ constexpr auto Option::InternalNewImpl_() {
130
+ return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Option), alignof(Option));
131
+ }
132
+ constexpr auto Option::InternalGenerateClassData_(
133
+ const MessageLite& prototype,
134
+ const ::google::protobuf::internal::TcParseTableBase* tc_table) {
135
+ return ::google::protobuf::internal::ClassDataFull{
136
+ ::google::protobuf::internal::ClassData{
137
+ &prototype,
138
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
139
+ &_table_.header,
140
+ #else
141
+ tc_table,
142
+ #endif
143
+ nullptr, // IsInitialized
144
+ &Option::MergeImpl,
145
+ ::google::protobuf::Message::GetNewImpl<Option>(),
146
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
147
+ &Option::SharedDtor,
148
+ ::google::protobuf::Message::GetClearImpl<Option>(), &Option::ByteSizeLong,
149
+ &Option::_InternalSerialize,
150
+ #endif // PROTOBUF_CUSTOM_VTABLE
151
+ PROTOBUF_FIELD_OFFSET(Option, _impl_._cached_size_),
152
+ false,
153
+ },
154
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
155
+ &file_reflection_data[4],
156
+ #else // !PROTOBUF_MESSAGE_GLOBALS
157
+ &::_pbi::kDescriptorMethods,
158
+ &descriptor_table_google_2fprotobuf_2ftype_2eproto,
159
+ nullptr, // tracker
160
+ #endif // PROTOBUF_MESSAGE_GLOBALS
161
+ };
162
+ }
163
+ struct OptionGlobalsTypeInternal : ::_pbi::MessageGlobalsBase {
164
+ constexpr OptionGlobalsTypeInternal()
165
+ :
166
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
167
+ _default(::_pbi::ConstantInitialized{},
168
+ Option_class_data_.base())
169
+ #else // !PROTOBUF_MESSAGE_GLOBALS
170
+ MessageGlobalsBase(Option::InternalGenerateClassData_(
171
+ _default, &Option_globals_._table.header)),
172
+ _default(::_pbi::ConstantInitialized{}, GetClassData()),
173
+ _table(::_pbi::PrivateAccess::GenerateParseTable<Option>(
174
+ GetClassData()))
175
+ #endif // PROTOBUF_MESSAGE_GLOBALS
176
+ {
177
+ }
178
+ ~OptionGlobalsTypeInternal() {}
179
+ union {
180
+ alignas(::_pbi::kMaxMessageAlignment) Option _default;
181
+ };
182
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
183
+ decltype(::_pbi::PrivateAccess::GenerateParseTable<Option>(
184
+ ::std::declval<const ::_pbi::ClassData*>())) _table;
185
+ #endif
186
+ };
187
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
188
+ static_assert(PROTOBUF_FIELD_OFFSET(OptionGlobalsTypeInternal, _default) ==
189
+ ::_pbi::MessageGlobalsBase::OffsetToDefault());
190
+ #endif // PROTOBUF_MESSAGE_GLOBALS
191
+
192
+ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_EXPORT
193
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PROTOBUF_MESSAGE_GLOBALS_CONST OptionGlobalsTypeInternal Option_globals_
194
+ PROTOBUF_MESSAGE_GLOBALS_SECTION(.data.rel.ro);
195
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
196
+ namespace {
197
+ const ::_pbi::ClassData* Option_get_class_data() {
198
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
199
+ return Option_globals_.GetClassData();
200
+ #else
201
+ return Option_class_data_.base();
202
+ #endif // PROTOBUF_MESSAGE_GLOBALS
203
+ }
204
+ } // namespace
205
+ #endif // PROTOBUF_CUSTOM_VTABLE
206
+ class Field::_Internal {
207
+ public:
208
+ using HasBits = decltype(::std::declval<Field>()._impl_._has_bits_);
209
+ static constexpr ::int32_t kHasBitsOffset =
210
+ 8 * PROTOBUF_FIELD_OFFSET(Field, _impl_._has_bits_);
211
+ };
212
+
213
+ constexpr Field::ParseTableT_ Field::InternalGenerateParseTable_(const ::_pbi::ClassData* class_data) {
214
+ return ParseTableT_{
215
+ {
216
+ PROTOBUF_FIELD_OFFSET(Field, _impl_._has_bits_),
217
+ 0, // no _extensions_
218
+ 11, 120, // max_field_number, fast_idx_mask
219
+ offsetof(ParseTableT_, field_lookup_table),
220
+ 4294965264, // skipmap
221
+ offsetof(ParseTableT_, field_entries),
222
+ 10, // num_field_entries
223
+ 1, // num_aux_entries
224
+ offsetof(ParseTableT_, aux_entries),
225
+ class_data,
226
+ nullptr, // post_loop_handler
227
+ ::_pbi::TcParser::GenericFallback, // fallback
228
+ #ifdef PROTOBUF_PREFETCH_PARSE_TABLE
229
+ ::_pbi::TcParser::GetTable<::google::protobuf::Field>(), // to_prefetch
230
+ #endif // PROTOBUF_PREFETCH_PARSE_TABLE
231
+ }, {{
232
+ {::_pbi::TcParser::MiniParse, {}},
233
+ // .google.protobuf.Field.Kind kind = 1;
234
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Field, _impl_.kind_), 5>(),
235
+ {8, 5, 0,
236
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.kind_)}},
237
+ // .google.protobuf.Field.Cardinality cardinality = 2;
238
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Field, _impl_.cardinality_), 6>(),
239
+ {16, 6, 0,
240
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.cardinality_)}},
241
+ // int32 number = 3;
242
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Field, _impl_.number_), 7>(),
243
+ {24, 7, 0,
244
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.number_)}},
245
+ // string name = 4;
246
+ {::_pbi::TcParser::FastUS1,
247
+ {34, 1, 0,
248
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.name_)}},
249
+ {::_pbi::TcParser::MiniParse, {}},
250
+ // string type_url = 6;
251
+ {::_pbi::TcParser::FastUS1,
252
+ {50, 2, 0,
253
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.type_url_)}},
254
+ // int32 oneof_index = 7;
255
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Field, _impl_.oneof_index_), 8>(),
256
+ {56, 8, 0,
257
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.oneof_index_)}},
258
+ // bool packed = 8;
259
+ {::_pbi::TcParser::SingularVarintNoZag1<bool, offsetof(Field, _impl_.packed_), 9>(),
260
+ {64, 9, 0,
261
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.packed_)}},
262
+ // repeated .google.protobuf.Option options = 9;
263
+ {::_pbi::TcParser::FastMtR1,
264
+ {74, 0, 0,
265
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.options_)}},
266
+ // string json_name = 10;
267
+ {::_pbi::TcParser::FastUS1,
268
+ {82, 3, 0,
269
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.json_name_)}},
270
+ // string default_value = 11;
271
+ {::_pbi::TcParser::FastUS1,
272
+ {90, 4, 0,
273
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.default_value_)}},
274
+ {::_pbi::TcParser::MiniParse, {}},
275
+ {::_pbi::TcParser::MiniParse, {}},
276
+ {::_pbi::TcParser::MiniParse, {}},
277
+ {::_pbi::TcParser::MiniParse, {}},
278
+ }}, {{
279
+ 65535, 65535
280
+ }}, {{
281
+ // .google.protobuf.Field.Kind kind = 1;
282
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.kind_), _Internal::kHasBitsOffset + 5, 0, (0 | ::_fl::kFcOptional | ::_fl::kOpenEnum)},
283
+ // .google.protobuf.Field.Cardinality cardinality = 2;
284
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.cardinality_), _Internal::kHasBitsOffset + 6, 0, (0 | ::_fl::kFcOptional | ::_fl::kOpenEnum)},
285
+ // int32 number = 3;
286
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.number_), _Internal::kHasBitsOffset + 7, 0, (0 | ::_fl::kFcOptional | ::_fl::kInt32)},
287
+ // string name = 4;
288
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.name_), _Internal::kHasBitsOffset + 1, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
289
+ // string type_url = 6;
290
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.type_url_), _Internal::kHasBitsOffset + 2, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
291
+ // int32 oneof_index = 7;
292
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.oneof_index_), _Internal::kHasBitsOffset + 8, 0, (0 | ::_fl::kFcOptional | ::_fl::kInt32)},
293
+ // bool packed = 8;
294
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.packed_), _Internal::kHasBitsOffset + 9, 0, (0 | ::_fl::kFcOptional | ::_fl::kBool)},
295
+ // repeated .google.protobuf.Option options = 9;
296
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)},
297
+ // string json_name = 10;
298
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.json_name_), _Internal::kHasBitsOffset + 3, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
299
+ // string default_value = 11;
300
+ {PROTOBUF_FIELD_OFFSET(Field, _impl_.default_value_), _Internal::kHasBitsOffset + 4, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
301
+ }},
302
+ {{
303
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
304
+ {::_pbi::TcParser::GetTable<::google::protobuf::Option>()},
305
+ #else
306
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::Option_globals_},
307
+ #endif
308
+ }},
309
+ {{
310
+ "\25\0\0\0\4\10\0\0\0\11\15\0\0\0\0\0"
311
+ "google.protobuf.Field"
312
+ "name"
313
+ "type_url"
314
+ "json_name"
315
+ "default_value"
316
+ }},
317
+ };
318
+ }
319
+
320
+
321
+ inline constexpr Field::Impl_::Impl_(
322
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
323
+ ::_pbi::ConstantInitialized) noexcept
324
+ : _cached_size_{0},
325
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
326
+ ::google::protobuf::Field,
327
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.options_)>()
328
+ }
329
+ ,
330
+ name_(
331
+ &::google::protobuf::internal::fixed_address_empty_string,
332
+ ::_pbi::ConstantInitialized()),
333
+ type_url_(
334
+ &::google::protobuf::internal::fixed_address_empty_string,
335
+ ::_pbi::ConstantInitialized()),
336
+ json_name_(
337
+ &::google::protobuf::internal::fixed_address_empty_string,
338
+ ::_pbi::ConstantInitialized()),
339
+ default_value_(
340
+ &::google::protobuf::internal::fixed_address_empty_string,
341
+ ::_pbi::ConstantInitialized()),
342
+ kind_{static_cast< ::google::protobuf::Field_Kind >(0)},
343
+ cardinality_{static_cast< ::google::protobuf::Field_Cardinality >(0)},
344
+ number_{0},
345
+ oneof_index_{0},
346
+ packed_{false} {}
347
+
348
+ template <typename>
349
+ constexpr Field::Field(::_pbi::ConstantInitialized,
350
+ const ::_pbi::ClassData* PROTOBUF_NONNULL class_data)
351
+ : ::google::protobuf::Message(
352
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
353
+ class_data
354
+ #endif // PROTOBUF_CUSTOM_VTABLE
355
+ ),
356
+ _impl_(internal_visibility(), ::_pbi::ConstantInitialized()) {
357
+ }
358
+ inline void* PROTOBUF_NONNULL Field::PlacementNew_(
359
+ const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
360
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena) {
361
+ return ::new (mem) Field(arena);
362
+ }
363
+ constexpr auto Field::InternalNewImpl_() {
364
+ return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Field), alignof(Field));
365
+ }
366
+ constexpr auto Field::InternalGenerateClassData_(
367
+ const MessageLite& prototype,
368
+ const ::google::protobuf::internal::TcParseTableBase* tc_table) {
369
+ return ::google::protobuf::internal::ClassDataFull{
370
+ ::google::protobuf::internal::ClassData{
371
+ &prototype,
372
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
373
+ &_table_.header,
374
+ #else
375
+ tc_table,
376
+ #endif
377
+ nullptr, // IsInitialized
378
+ &Field::MergeImpl,
379
+ ::google::protobuf::Message::GetNewImpl<Field>(),
380
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
381
+ &Field::SharedDtor,
382
+ ::google::protobuf::Message::GetClearImpl<Field>(), &Field::ByteSizeLong,
383
+ &Field::_InternalSerialize,
384
+ #endif // PROTOBUF_CUSTOM_VTABLE
385
+ PROTOBUF_FIELD_OFFSET(Field, _impl_._cached_size_),
386
+ false,
387
+ },
388
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
389
+ &file_reflection_data[1],
390
+ #else // !PROTOBUF_MESSAGE_GLOBALS
391
+ &::_pbi::kDescriptorMethods,
392
+ &descriptor_table_google_2fprotobuf_2ftype_2eproto,
393
+ nullptr, // tracker
394
+ #endif // PROTOBUF_MESSAGE_GLOBALS
395
+ };
396
+ }
397
+ struct FieldGlobalsTypeInternal : ::_pbi::MessageGlobalsBase {
398
+ constexpr FieldGlobalsTypeInternal()
399
+ :
400
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
401
+ _default(::_pbi::ConstantInitialized{},
402
+ Field_class_data_.base())
403
+ #else // !PROTOBUF_MESSAGE_GLOBALS
404
+ MessageGlobalsBase(Field::InternalGenerateClassData_(
405
+ _default, &Field_globals_._table.header)),
406
+ _default(::_pbi::ConstantInitialized{}, GetClassData()),
407
+ _table(::_pbi::PrivateAccess::GenerateParseTable<Field>(
408
+ GetClassData()))
409
+ #endif // PROTOBUF_MESSAGE_GLOBALS
410
+ {
411
+ }
412
+ ~FieldGlobalsTypeInternal() {}
413
+ union {
414
+ alignas(::_pbi::kMaxMessageAlignment) Field _default;
415
+ };
416
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
417
+ decltype(::_pbi::PrivateAccess::GenerateParseTable<Field>(
418
+ ::std::declval<const ::_pbi::ClassData*>())) _table;
419
+ #endif
420
+ };
421
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
422
+ static_assert(PROTOBUF_FIELD_OFFSET(FieldGlobalsTypeInternal, _default) ==
423
+ ::_pbi::MessageGlobalsBase::OffsetToDefault());
424
+ #endif // PROTOBUF_MESSAGE_GLOBALS
425
+
426
+ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_EXPORT
427
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PROTOBUF_MESSAGE_GLOBALS_CONST FieldGlobalsTypeInternal Field_globals_
428
+ PROTOBUF_MESSAGE_GLOBALS_SECTION(.data.rel.ro);
429
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
430
+ namespace {
431
+ const ::_pbi::ClassData* Field_get_class_data() {
432
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
433
+ return Field_globals_.GetClassData();
434
+ #else
435
+ return Field_class_data_.base();
436
+ #endif // PROTOBUF_MESSAGE_GLOBALS
437
+ }
438
+ } // namespace
439
+ #endif // PROTOBUF_CUSTOM_VTABLE
440
+ class EnumValue::_Internal {
441
+ public:
442
+ using HasBits = decltype(::std::declval<EnumValue>()._impl_._has_bits_);
443
+ static constexpr ::int32_t kHasBitsOffset =
444
+ 8 * PROTOBUF_FIELD_OFFSET(EnumValue, _impl_._has_bits_);
445
+ };
446
+
447
+ constexpr EnumValue::ParseTableT_ EnumValue::InternalGenerateParseTable_(const ::_pbi::ClassData* class_data) {
448
+ return ParseTableT_{
449
+ {
450
+ PROTOBUF_FIELD_OFFSET(EnumValue, _impl_._has_bits_),
451
+ 0, // no _extensions_
452
+ 3, 24, // max_field_number, fast_idx_mask
453
+ offsetof(ParseTableT_, field_lookup_table),
454
+ 4294967288, // skipmap
455
+ offsetof(ParseTableT_, field_entries),
456
+ 3, // num_field_entries
457
+ 1, // num_aux_entries
458
+ offsetof(ParseTableT_, aux_entries),
459
+ class_data,
460
+ nullptr, // post_loop_handler
461
+ ::_pbi::TcParser::GenericFallback, // fallback
462
+ #ifdef PROTOBUF_PREFETCH_PARSE_TABLE
463
+ ::_pbi::TcParser::GetTable<::google::protobuf::EnumValue>(), // to_prefetch
464
+ #endif // PROTOBUF_PREFETCH_PARSE_TABLE
465
+ }, {{
466
+ {::_pbi::TcParser::MiniParse, {}},
467
+ // string name = 1;
468
+ {::_pbi::TcParser::FastUS1,
469
+ {10, 1, 0,
470
+ PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.name_)}},
471
+ // int32 number = 2;
472
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(EnumValue, _impl_.number_), 2>(),
473
+ {16, 2, 0,
474
+ PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.number_)}},
475
+ // repeated .google.protobuf.Option options = 3;
476
+ {::_pbi::TcParser::FastMtR1,
477
+ {26, 0, 0,
478
+ PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.options_)}},
479
+ }}, {{
480
+ 65535, 65535
481
+ }}, {{
482
+ // string name = 1;
483
+ {PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.name_), _Internal::kHasBitsOffset + 1, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
484
+ // int32 number = 2;
485
+ {PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.number_), _Internal::kHasBitsOffset + 2, 0, (0 | ::_fl::kFcOptional | ::_fl::kInt32)},
486
+ // repeated .google.protobuf.Option options = 3;
487
+ {PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)},
488
+ }},
489
+ {{
490
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
491
+ {::_pbi::TcParser::GetTable<::google::protobuf::Option>()},
492
+ #else
493
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::Option_globals_},
494
+ #endif
495
+ }},
496
+ {{
497
+ "\31\4\0\0\0\0\0\0"
498
+ "google.protobuf.EnumValue"
499
+ "name"
500
+ }},
501
+ };
502
+ }
503
+
504
+
505
+ inline constexpr EnumValue::Impl_::Impl_(
506
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
507
+ ::_pbi::ConstantInitialized) noexcept
508
+ : _cached_size_{0},
509
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
510
+ ::google::protobuf::EnumValue,
511
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_.options_)>()
512
+ }
513
+ ,
514
+ name_(
515
+ &::google::protobuf::internal::fixed_address_empty_string,
516
+ ::_pbi::ConstantInitialized()),
517
+ number_{0} {}
518
+
519
+ template <typename>
520
+ constexpr EnumValue::EnumValue(::_pbi::ConstantInitialized,
521
+ const ::_pbi::ClassData* PROTOBUF_NONNULL class_data)
522
+ : ::google::protobuf::Message(
523
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
524
+ class_data
525
+ #endif // PROTOBUF_CUSTOM_VTABLE
526
+ ),
527
+ _impl_(internal_visibility(), ::_pbi::ConstantInitialized()) {
528
+ }
529
+ inline void* PROTOBUF_NONNULL EnumValue::PlacementNew_(
530
+ const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
531
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena) {
532
+ return ::new (mem) EnumValue(arena);
533
+ }
534
+ constexpr auto EnumValue::InternalNewImpl_() {
535
+ return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(EnumValue), alignof(EnumValue));
536
+ }
537
+ constexpr auto EnumValue::InternalGenerateClassData_(
538
+ const MessageLite& prototype,
539
+ const ::google::protobuf::internal::TcParseTableBase* tc_table) {
540
+ return ::google::protobuf::internal::ClassDataFull{
541
+ ::google::protobuf::internal::ClassData{
542
+ &prototype,
543
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
544
+ &_table_.header,
545
+ #else
546
+ tc_table,
547
+ #endif
548
+ nullptr, // IsInitialized
549
+ &EnumValue::MergeImpl,
550
+ ::google::protobuf::Message::GetNewImpl<EnumValue>(),
551
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
552
+ &EnumValue::SharedDtor,
553
+ ::google::protobuf::Message::GetClearImpl<EnumValue>(), &EnumValue::ByteSizeLong,
554
+ &EnumValue::_InternalSerialize,
555
+ #endif // PROTOBUF_CUSTOM_VTABLE
556
+ PROTOBUF_FIELD_OFFSET(EnumValue, _impl_._cached_size_),
557
+ false,
558
+ },
559
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
560
+ &file_reflection_data[3],
561
+ #else // !PROTOBUF_MESSAGE_GLOBALS
562
+ &::_pbi::kDescriptorMethods,
563
+ &descriptor_table_google_2fprotobuf_2ftype_2eproto,
564
+ nullptr, // tracker
565
+ #endif // PROTOBUF_MESSAGE_GLOBALS
566
+ };
567
+ }
568
+ struct EnumValueGlobalsTypeInternal : ::_pbi::MessageGlobalsBase {
569
+ constexpr EnumValueGlobalsTypeInternal()
570
+ :
571
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
572
+ _default(::_pbi::ConstantInitialized{},
573
+ EnumValue_class_data_.base())
574
+ #else // !PROTOBUF_MESSAGE_GLOBALS
575
+ MessageGlobalsBase(EnumValue::InternalGenerateClassData_(
576
+ _default, &EnumValue_globals_._table.header)),
577
+ _default(::_pbi::ConstantInitialized{}, GetClassData()),
578
+ _table(::_pbi::PrivateAccess::GenerateParseTable<EnumValue>(
579
+ GetClassData()))
580
+ #endif // PROTOBUF_MESSAGE_GLOBALS
581
+ {
582
+ }
583
+ ~EnumValueGlobalsTypeInternal() {}
584
+ union {
585
+ alignas(::_pbi::kMaxMessageAlignment) EnumValue _default;
586
+ };
587
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
588
+ decltype(::_pbi::PrivateAccess::GenerateParseTable<EnumValue>(
589
+ ::std::declval<const ::_pbi::ClassData*>())) _table;
590
+ #endif
591
+ };
592
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
593
+ static_assert(PROTOBUF_FIELD_OFFSET(EnumValueGlobalsTypeInternal, _default) ==
594
+ ::_pbi::MessageGlobalsBase::OffsetToDefault());
595
+ #endif // PROTOBUF_MESSAGE_GLOBALS
596
+
597
+ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_EXPORT
598
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PROTOBUF_MESSAGE_GLOBALS_CONST EnumValueGlobalsTypeInternal EnumValue_globals_
599
+ PROTOBUF_MESSAGE_GLOBALS_SECTION(.data.rel.ro);
600
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
601
+ namespace {
602
+ const ::_pbi::ClassData* EnumValue_get_class_data() {
603
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
604
+ return EnumValue_globals_.GetClassData();
605
+ #else
606
+ return EnumValue_class_data_.base();
607
+ #endif // PROTOBUF_MESSAGE_GLOBALS
608
+ }
609
+ } // namespace
610
+ #endif // PROTOBUF_CUSTOM_VTABLE
611
+ class Type::_Internal {
612
+ public:
613
+ using HasBits = decltype(::std::declval<Type>()._impl_._has_bits_);
614
+ static constexpr ::int32_t kHasBitsOffset =
615
+ 8 * PROTOBUF_FIELD_OFFSET(Type, _impl_._has_bits_);
616
+ };
617
+
618
+ constexpr Type::ParseTableT_ Type::InternalGenerateParseTable_(const ::_pbi::ClassData* class_data) {
619
+ return ParseTableT_{
620
+ {
621
+ PROTOBUF_FIELD_OFFSET(Type, _impl_._has_bits_),
622
+ 0, // no _extensions_
623
+ 7, 56, // max_field_number, fast_idx_mask
624
+ offsetof(ParseTableT_, field_lookup_table),
625
+ 4294967168, // skipmap
626
+ offsetof(ParseTableT_, field_entries),
627
+ 7, // num_field_entries
628
+ 3, // num_aux_entries
629
+ offsetof(ParseTableT_, aux_entries),
630
+ class_data,
631
+ nullptr, // post_loop_handler
632
+ ::_pbi::TcParser::GenericFallback, // fallback
633
+ #ifdef PROTOBUF_PREFETCH_PARSE_TABLE
634
+ ::_pbi::TcParser::GetTable<::google::protobuf::Type>(), // to_prefetch
635
+ #endif // PROTOBUF_PREFETCH_PARSE_TABLE
636
+ }, {{
637
+ {::_pbi::TcParser::MiniParse, {}},
638
+ // string name = 1;
639
+ {::_pbi::TcParser::FastUS1,
640
+ {10, 3, 0,
641
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.name_)}},
642
+ // repeated .google.protobuf.Field fields = 2;
643
+ {::_pbi::TcParser::FastMtR1,
644
+ {18, 0, 0,
645
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.fields_)}},
646
+ // repeated string oneofs = 3;
647
+ {::_pbi::TcParser::FastUR1,
648
+ {26, 1, 0,
649
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.oneofs_)}},
650
+ // repeated .google.protobuf.Option options = 4;
651
+ {::_pbi::TcParser::FastMtR1,
652
+ {34, 2, 1,
653
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.options_)}},
654
+ // .google.protobuf.SourceContext source_context = 5;
655
+ {::_pbi::TcParser::FastMtS1,
656
+ {42, 5, 2,
657
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.source_context_)}},
658
+ // .google.protobuf.Syntax syntax = 6;
659
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Type, _impl_.syntax_), 6>(),
660
+ {48, 6, 0,
661
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.syntax_)}},
662
+ // string edition = 7;
663
+ {::_pbi::TcParser::FastUS1,
664
+ {58, 4, 0,
665
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.edition_)}},
666
+ }}, {{
667
+ 65535, 65535
668
+ }}, {{
669
+ // string name = 1;
670
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.name_), _Internal::kHasBitsOffset + 3, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
671
+ // repeated .google.protobuf.Field fields = 2;
672
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.fields_), _Internal::kHasBitsOffset + 0, 0, (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)},
673
+ // repeated string oneofs = 3;
674
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.oneofs_), _Internal::kHasBitsOffset + 1, 0, (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)},
675
+ // repeated .google.protobuf.Option options = 4;
676
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.options_), _Internal::kHasBitsOffset + 2, 1, (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)},
677
+ // .google.protobuf.SourceContext source_context = 5;
678
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.source_context_), _Internal::kHasBitsOffset + 5, 2, (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)},
679
+ // .google.protobuf.Syntax syntax = 6;
680
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.syntax_), _Internal::kHasBitsOffset + 6, 0, (0 | ::_fl::kFcOptional | ::_fl::kOpenEnum)},
681
+ // string edition = 7;
682
+ {PROTOBUF_FIELD_OFFSET(Type, _impl_.edition_), _Internal::kHasBitsOffset + 4, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
683
+ }},
684
+ {{
685
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
686
+ {::_pbi::TcParser::GetTable<::google::protobuf::Field>()},
687
+ #else
688
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::Field_globals_},
689
+ #endif
690
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
691
+ {::_pbi::TcParser::GetTable<::google::protobuf::Option>()},
692
+ #else
693
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::Option_globals_},
694
+ #endif
695
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
696
+ {::_pbi::TcParser::GetTable<::google::protobuf::SourceContext>()},
697
+ #else
698
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::SourceContext_globals_},
699
+ #endif
700
+ }},
701
+ {{
702
+ "\24\4\0\6\0\0\0\7"
703
+ "google.protobuf.Type"
704
+ "name"
705
+ "oneofs"
706
+ "edition"
707
+ }},
708
+ };
709
+ }
710
+
711
+
712
+ inline constexpr Type::Impl_::Impl_(
713
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
714
+ ::_pbi::ConstantInitialized) noexcept
715
+ : _cached_size_{0},
716
+ fields_ { visibility, ::_pbi::InternalMetadataOffset::Build<
717
+ ::google::protobuf::Type,
718
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.fields_)>()
719
+ }
720
+ ,
721
+ oneofs_ { visibility, ::_pbi::InternalMetadataOffset::Build<
722
+ ::google::protobuf::Type,
723
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.oneofs_)>()
724
+ }
725
+ ,
726
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
727
+ ::google::protobuf::Type,
728
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.options_)>()
729
+ }
730
+ ,
731
+ name_(
732
+ &::google::protobuf::internal::fixed_address_empty_string,
733
+ ::_pbi::ConstantInitialized()),
734
+ edition_(
735
+ &::google::protobuf::internal::fixed_address_empty_string,
736
+ ::_pbi::ConstantInitialized()),
737
+ source_context_{nullptr},
738
+ syntax_{static_cast< ::google::protobuf::Syntax >(0)} {}
739
+
740
+ template <typename>
741
+ constexpr Type::Type(::_pbi::ConstantInitialized,
742
+ const ::_pbi::ClassData* PROTOBUF_NONNULL class_data)
743
+ : ::google::protobuf::Message(
744
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
745
+ class_data
746
+ #endif // PROTOBUF_CUSTOM_VTABLE
747
+ ),
748
+ _impl_(internal_visibility(), ::_pbi::ConstantInitialized()) {
749
+ }
750
+ inline void* PROTOBUF_NONNULL Type::PlacementNew_(
751
+ const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
752
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena) {
753
+ return ::new (mem) Type(arena);
754
+ }
755
+ constexpr auto Type::InternalNewImpl_() {
756
+ return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Type), alignof(Type));
757
+ }
758
+ constexpr auto Type::InternalGenerateClassData_(
759
+ const MessageLite& prototype,
760
+ const ::google::protobuf::internal::TcParseTableBase* tc_table) {
761
+ return ::google::protobuf::internal::ClassDataFull{
762
+ ::google::protobuf::internal::ClassData{
763
+ &prototype,
764
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
765
+ &_table_.header,
766
+ #else
767
+ tc_table,
768
+ #endif
769
+ nullptr, // IsInitialized
770
+ &Type::MergeImpl,
771
+ ::google::protobuf::Message::GetNewImpl<Type>(),
772
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
773
+ &Type::SharedDtor,
774
+ ::google::protobuf::Message::GetClearImpl<Type>(), &Type::ByteSizeLong,
775
+ &Type::_InternalSerialize,
776
+ #endif // PROTOBUF_CUSTOM_VTABLE
777
+ PROTOBUF_FIELD_OFFSET(Type, _impl_._cached_size_),
778
+ false,
779
+ },
780
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
781
+ &file_reflection_data[0],
782
+ #else // !PROTOBUF_MESSAGE_GLOBALS
783
+ &::_pbi::kDescriptorMethods,
784
+ &descriptor_table_google_2fprotobuf_2ftype_2eproto,
785
+ nullptr, // tracker
786
+ #endif // PROTOBUF_MESSAGE_GLOBALS
787
+ };
788
+ }
789
+ struct TypeGlobalsTypeInternal : ::_pbi::MessageGlobalsBase {
790
+ constexpr TypeGlobalsTypeInternal()
791
+ :
792
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
793
+ _default(::_pbi::ConstantInitialized{},
794
+ Type_class_data_.base())
795
+ #else // !PROTOBUF_MESSAGE_GLOBALS
796
+ MessageGlobalsBase(Type::InternalGenerateClassData_(
797
+ _default, &Type_globals_._table.header)),
798
+ _default(::_pbi::ConstantInitialized{}, GetClassData()),
799
+ _table(::_pbi::PrivateAccess::GenerateParseTable<Type>(
800
+ GetClassData()))
801
+ #endif // PROTOBUF_MESSAGE_GLOBALS
802
+ {
803
+ }
804
+ ~TypeGlobalsTypeInternal() {}
805
+ union {
806
+ alignas(::_pbi::kMaxMessageAlignment) Type _default;
807
+ };
808
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
809
+ decltype(::_pbi::PrivateAccess::GenerateParseTable<Type>(
810
+ ::std::declval<const ::_pbi::ClassData*>())) _table;
811
+ #endif
812
+ };
813
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
814
+ static_assert(PROTOBUF_FIELD_OFFSET(TypeGlobalsTypeInternal, _default) ==
815
+ ::_pbi::MessageGlobalsBase::OffsetToDefault());
816
+ #endif // PROTOBUF_MESSAGE_GLOBALS
817
+
818
+ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_EXPORT
819
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PROTOBUF_MESSAGE_GLOBALS_CONST TypeGlobalsTypeInternal Type_globals_
820
+ PROTOBUF_MESSAGE_GLOBALS_SECTION(.data.rel.ro);
821
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
822
+ namespace {
823
+ const ::_pbi::ClassData* Type_get_class_data() {
824
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
825
+ return Type_globals_.GetClassData();
826
+ #else
827
+ return Type_class_data_.base();
828
+ #endif // PROTOBUF_MESSAGE_GLOBALS
829
+ }
830
+ } // namespace
831
+ #endif // PROTOBUF_CUSTOM_VTABLE
832
+ class Enum::_Internal {
833
+ public:
834
+ using HasBits = decltype(::std::declval<Enum>()._impl_._has_bits_);
835
+ static constexpr ::int32_t kHasBitsOffset =
836
+ 8 * PROTOBUF_FIELD_OFFSET(Enum, _impl_._has_bits_);
837
+ };
838
+
839
+ constexpr Enum::ParseTableT_ Enum::InternalGenerateParseTable_(const ::_pbi::ClassData* class_data) {
840
+ return ParseTableT_{
841
+ {
842
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_._has_bits_),
843
+ 0, // no _extensions_
844
+ 6, 56, // max_field_number, fast_idx_mask
845
+ offsetof(ParseTableT_, field_lookup_table),
846
+ 4294967232, // skipmap
847
+ offsetof(ParseTableT_, field_entries),
848
+ 6, // num_field_entries
849
+ 3, // num_aux_entries
850
+ offsetof(ParseTableT_, aux_entries),
851
+ class_data,
852
+ nullptr, // post_loop_handler
853
+ ::_pbi::TcParser::GenericFallback, // fallback
854
+ #ifdef PROTOBUF_PREFETCH_PARSE_TABLE
855
+ ::_pbi::TcParser::GetTable<::google::protobuf::Enum>(), // to_prefetch
856
+ #endif // PROTOBUF_PREFETCH_PARSE_TABLE
857
+ }, {{
858
+ {::_pbi::TcParser::MiniParse, {}},
859
+ // string name = 1;
860
+ {::_pbi::TcParser::FastUS1,
861
+ {10, 2, 0,
862
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.name_)}},
863
+ // repeated .google.protobuf.EnumValue enumvalue = 2;
864
+ {::_pbi::TcParser::FastMtR1,
865
+ {18, 0, 0,
866
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.enumvalue_)}},
867
+ // repeated .google.protobuf.Option options = 3;
868
+ {::_pbi::TcParser::FastMtR1,
869
+ {26, 1, 1,
870
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.options_)}},
871
+ // .google.protobuf.SourceContext source_context = 4;
872
+ {::_pbi::TcParser::FastMtS1,
873
+ {34, 4, 2,
874
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.source_context_)}},
875
+ // .google.protobuf.Syntax syntax = 5;
876
+ {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Enum, _impl_.syntax_), 5>(),
877
+ {40, 5, 0,
878
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.syntax_)}},
879
+ // string edition = 6;
880
+ {::_pbi::TcParser::FastUS1,
881
+ {50, 3, 0,
882
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.edition_)}},
883
+ {::_pbi::TcParser::MiniParse, {}},
884
+ }}, {{
885
+ 65535, 65535
886
+ }}, {{
887
+ // string name = 1;
888
+ {PROTOBUF_FIELD_OFFSET(Enum, _impl_.name_), _Internal::kHasBitsOffset + 2, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
889
+ // repeated .google.protobuf.EnumValue enumvalue = 2;
890
+ {PROTOBUF_FIELD_OFFSET(Enum, _impl_.enumvalue_), _Internal::kHasBitsOffset + 0, 0, (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)},
891
+ // repeated .google.protobuf.Option options = 3;
892
+ {PROTOBUF_FIELD_OFFSET(Enum, _impl_.options_), _Internal::kHasBitsOffset + 1, 1, (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)},
893
+ // .google.protobuf.SourceContext source_context = 4;
894
+ {PROTOBUF_FIELD_OFFSET(Enum, _impl_.source_context_), _Internal::kHasBitsOffset + 4, 2, (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)},
895
+ // .google.protobuf.Syntax syntax = 5;
896
+ {PROTOBUF_FIELD_OFFSET(Enum, _impl_.syntax_), _Internal::kHasBitsOffset + 5, 0, (0 | ::_fl::kFcOptional | ::_fl::kOpenEnum)},
897
+ // string edition = 6;
898
+ {PROTOBUF_FIELD_OFFSET(Enum, _impl_.edition_), _Internal::kHasBitsOffset + 3, 0, (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)},
899
+ }},
900
+ {{
901
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
902
+ {::_pbi::TcParser::GetTable<::google::protobuf::EnumValue>()},
903
+ #else
904
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::EnumValue_globals_},
905
+ #endif
906
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
907
+ {::_pbi::TcParser::GetTable<::google::protobuf::Option>()},
908
+ #else
909
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::Option_globals_},
910
+ #endif
911
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
912
+ {::_pbi::TcParser::GetTable<::google::protobuf::SourceContext>()},
913
+ #else
914
+ {::_pbi::FieldAuxMessageGlobals(), &::google::protobuf::SourceContext_globals_},
915
+ #endif
916
+ }},
917
+ {{
918
+ "\24\4\0\0\0\0\7\0"
919
+ "google.protobuf.Enum"
920
+ "name"
921
+ "edition"
922
+ }},
923
+ };
924
+ }
925
+
926
+
927
+ inline constexpr Enum::Impl_::Impl_(
928
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
929
+ ::_pbi::ConstantInitialized) noexcept
930
+ : _cached_size_{0},
931
+ enumvalue_ { visibility, ::_pbi::InternalMetadataOffset::Build<
932
+ ::google::protobuf::Enum,
933
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.enumvalue_)>()
934
+ }
935
+ ,
936
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
937
+ ::google::protobuf::Enum,
938
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.options_)>()
939
+ }
940
+ ,
941
+ name_(
942
+ &::google::protobuf::internal::fixed_address_empty_string,
943
+ ::_pbi::ConstantInitialized()),
944
+ edition_(
945
+ &::google::protobuf::internal::fixed_address_empty_string,
946
+ ::_pbi::ConstantInitialized()),
947
+ source_context_{nullptr},
948
+ syntax_{static_cast< ::google::protobuf::Syntax >(0)} {}
949
+
950
+ template <typename>
951
+ constexpr Enum::Enum(::_pbi::ConstantInitialized,
952
+ const ::_pbi::ClassData* PROTOBUF_NONNULL class_data)
953
+ : ::google::protobuf::Message(
954
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
955
+ class_data
956
+ #endif // PROTOBUF_CUSTOM_VTABLE
957
+ ),
958
+ _impl_(internal_visibility(), ::_pbi::ConstantInitialized()) {
959
+ }
960
+ inline void* PROTOBUF_NONNULL Enum::PlacementNew_(
961
+ const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
962
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena) {
963
+ return ::new (mem) Enum(arena);
964
+ }
965
+ constexpr auto Enum::InternalNewImpl_() {
966
+ return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Enum), alignof(Enum));
967
+ }
968
+ constexpr auto Enum::InternalGenerateClassData_(
969
+ const MessageLite& prototype,
970
+ const ::google::protobuf::internal::TcParseTableBase* tc_table) {
971
+ return ::google::protobuf::internal::ClassDataFull{
972
+ ::google::protobuf::internal::ClassData{
973
+ &prototype,
974
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
975
+ &_table_.header,
976
+ #else
977
+ tc_table,
978
+ #endif
979
+ nullptr, // IsInitialized
980
+ &Enum::MergeImpl,
981
+ ::google::protobuf::Message::GetNewImpl<Enum>(),
982
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
983
+ &Enum::SharedDtor,
984
+ ::google::protobuf::Message::GetClearImpl<Enum>(), &Enum::ByteSizeLong,
985
+ &Enum::_InternalSerialize,
986
+ #endif // PROTOBUF_CUSTOM_VTABLE
987
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_._cached_size_),
988
+ false,
989
+ },
990
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
991
+ &file_reflection_data[2],
992
+ #else // !PROTOBUF_MESSAGE_GLOBALS
993
+ &::_pbi::kDescriptorMethods,
994
+ &descriptor_table_google_2fprotobuf_2ftype_2eproto,
995
+ nullptr, // tracker
996
+ #endif // PROTOBUF_MESSAGE_GLOBALS
997
+ };
998
+ }
999
+ struct EnumGlobalsTypeInternal : ::_pbi::MessageGlobalsBase {
1000
+ constexpr EnumGlobalsTypeInternal()
1001
+ :
1002
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
1003
+ _default(::_pbi::ConstantInitialized{},
1004
+ Enum_class_data_.base())
1005
+ #else // !PROTOBUF_MESSAGE_GLOBALS
1006
+ MessageGlobalsBase(Enum::InternalGenerateClassData_(
1007
+ _default, &Enum_globals_._table.header)),
1008
+ _default(::_pbi::ConstantInitialized{}, GetClassData()),
1009
+ _table(::_pbi::PrivateAccess::GenerateParseTable<Enum>(
1010
+ GetClassData()))
1011
+ #endif // PROTOBUF_MESSAGE_GLOBALS
1012
+ {
1013
+ }
1014
+ ~EnumGlobalsTypeInternal() {}
1015
+ union {
1016
+ alignas(::_pbi::kMaxMessageAlignment) Enum _default;
1017
+ };
1018
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
1019
+ decltype(::_pbi::PrivateAccess::GenerateParseTable<Enum>(
1020
+ ::std::declval<const ::_pbi::ClassData*>())) _table;
1021
+ #endif
1022
+ };
1023
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
1024
+ static_assert(PROTOBUF_FIELD_OFFSET(EnumGlobalsTypeInternal, _default) ==
1025
+ ::_pbi::MessageGlobalsBase::OffsetToDefault());
1026
+ #endif // PROTOBUF_MESSAGE_GLOBALS
1027
+
1028
+ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_EXPORT
1029
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PROTOBUF_MESSAGE_GLOBALS_CONST EnumGlobalsTypeInternal Enum_globals_
1030
+ PROTOBUF_MESSAGE_GLOBALS_SECTION(.data.rel.ro);
1031
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1032
+ namespace {
1033
+ const ::_pbi::ClassData* Enum_get_class_data() {
1034
+ #ifdef PROTOBUF_MESSAGE_GLOBALS
1035
+ return Enum_globals_.GetClassData();
1036
+ #else
1037
+ return Enum_class_data_.base();
1038
+ #endif // PROTOBUF_MESSAGE_GLOBALS
1039
+ }
1040
+ } // namespace
1041
+ #endif // PROTOBUF_CUSTOM_VTABLE
1042
+ } // namespace protobuf
1043
+ } // namespace google
1044
+ static const ::_pb::EnumDescriptor* PROTOBUF_NONNULL
1045
+ file_level_enum_descriptors_google_2fprotobuf_2ftype_2eproto[3];
1046
+ static constexpr const ::_pb::ServiceDescriptor* PROTOBUF_NONNULL* PROTOBUF_NULLABLE
1047
+ file_level_service_descriptors_google_2fprotobuf_2ftype_2eproto = nullptr;
1048
+ const ::uint32_t
1049
+ TableStruct_google_2fprotobuf_2ftype_2eproto::offsets[] ABSL_ATTRIBUTE_SECTION_VARIABLE(
1050
+ protodesc_cold) = {
1051
+ 0x081, // bitmap
1052
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_._has_bits_),
1053
+ 10, // hasbit index offset
1054
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.name_),
1055
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.fields_),
1056
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.oneofs_),
1057
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.options_),
1058
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.source_context_),
1059
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.syntax_),
1060
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.edition_),
1061
+ 3,
1062
+ 0,
1063
+ 1,
1064
+ 2,
1065
+ 5,
1066
+ 6,
1067
+ 4,
1068
+ 0x081, // bitmap
1069
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_._has_bits_),
1070
+ 13, // hasbit index offset
1071
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.kind_),
1072
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.cardinality_),
1073
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.number_),
1074
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.name_),
1075
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.type_url_),
1076
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.oneof_index_),
1077
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.packed_),
1078
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.options_),
1079
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.json_name_),
1080
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.default_value_),
1081
+ 5,
1082
+ 6,
1083
+ 7,
1084
+ 1,
1085
+ 2,
1086
+ 8,
1087
+ 9,
1088
+ 0,
1089
+ 3,
1090
+ 4,
1091
+ 0x081, // bitmap
1092
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_._has_bits_),
1093
+ 9, // hasbit index offset
1094
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.name_),
1095
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.enumvalue_),
1096
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.options_),
1097
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.source_context_),
1098
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.syntax_),
1099
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.edition_),
1100
+ 2,
1101
+ 0,
1102
+ 1,
1103
+ 4,
1104
+ 5,
1105
+ 3,
1106
+ 0x081, // bitmap
1107
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_._has_bits_),
1108
+ 6, // hasbit index offset
1109
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_.name_),
1110
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_.number_),
1111
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_.options_),
1112
+ 1,
1113
+ 2,
1114
+ 0,
1115
+ 0x081, // bitmap
1116
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Option, _impl_._has_bits_),
1117
+ 5, // hasbit index offset
1118
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Option, _impl_.name_),
1119
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Option, _impl_.value_),
1120
+ 0,
1121
+ 1,
1122
+ };
1123
+
1124
+ static const ::_pbi::MigrationSchema
1125
+ schemas[] ABSL_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
1126
+ {0, sizeof(::google::protobuf::Type)},
1127
+ {17, sizeof(::google::protobuf::Field)},
1128
+ {40, sizeof(::google::protobuf::Enum)},
1129
+ {55, sizeof(::google::protobuf::EnumValue)},
1130
+ {64, sizeof(::google::protobuf::Option)},
1131
+ };
1132
+ static const ::_pbi::MessageGlobalsBase* PROTOBUF_NONNULL const
1133
+ file_message_globals[] = {
1134
+ &::google::protobuf::Type_globals_,
1135
+ &::google::protobuf::Field_globals_,
1136
+ &::google::protobuf::Enum_globals_,
1137
+ &::google::protobuf::EnumValue_globals_,
1138
+ &::google::protobuf::Option_globals_,
1139
+ };
1140
+ const char descriptor_table_protodef_google_2fprotobuf_2ftype_2eproto[] ABSL_ATTRIBUTE_SECTION_VARIABLE(
1141
+ protodesc_cold) = {
1142
+ "\n\032google/protobuf/type.proto\022\017google.pro"
1143
+ "tobuf\032\031google/protobuf/any.proto\032$google"
1144
+ "/protobuf/source_context.proto\"\350\001\n\004Type\022"
1145
+ "\014\n\004name\030\001 \001(\t\022&\n\006fields\030\002 \003(\0132\026.google.p"
1146
+ "rotobuf.Field\022\016\n\006oneofs\030\003 \003(\t\022(\n\007options"
1147
+ "\030\004 \003(\0132\027.google.protobuf.Option\0226\n\016sourc"
1148
+ "e_context\030\005 \001(\0132\036.google.protobuf.Source"
1149
+ "Context\022\'\n\006syntax\030\006 \001(\0162\027.google.protobu"
1150
+ "f.Syntax\022\017\n\007edition\030\007 \001(\t\"\325\005\n\005Field\022)\n\004k"
1151
+ "ind\030\001 \001(\0162\033.google.protobuf.Field.Kind\0227"
1152
+ "\n\013cardinality\030\002 \001(\0162\".google.protobuf.Fi"
1153
+ "eld.Cardinality\022\016\n\006number\030\003 \001(\005\022\014\n\004name\030"
1154
+ "\004 \001(\t\022\020\n\010type_url\030\006 \001(\t\022\023\n\013oneof_index\030\007"
1155
+ " \001(\005\022\016\n\006packed\030\010 \001(\010\022(\n\007options\030\t \003(\0132\027."
1156
+ "google.protobuf.Option\022\021\n\tjson_name\030\n \001("
1157
+ "\t\022\025\n\rdefault_value\030\013 \001(\t\"\310\002\n\004Kind\022\020\n\014TYP"
1158
+ "E_UNKNOWN\020\000\022\017\n\013TYPE_DOUBLE\020\001\022\016\n\nTYPE_FLO"
1159
+ "AT\020\002\022\016\n\nTYPE_INT64\020\003\022\017\n\013TYPE_UINT64\020\004\022\016\n"
1160
+ "\nTYPE_INT32\020\005\022\020\n\014TYPE_FIXED64\020\006\022\020\n\014TYPE_"
1161
+ "FIXED32\020\007\022\r\n\tTYPE_BOOL\020\010\022\017\n\013TYPE_STRING\020"
1162
+ "\t\022\016\n\nTYPE_GROUP\020\n\022\020\n\014TYPE_MESSAGE\020\013\022\016\n\nT"
1163
+ "YPE_BYTES\020\014\022\017\n\013TYPE_UINT32\020\r\022\r\n\tTYPE_ENU"
1164
+ "M\020\016\022\021\n\rTYPE_SFIXED32\020\017\022\021\n\rTYPE_SFIXED64\020"
1165
+ "\020\022\017\n\013TYPE_SINT32\020\021\022\017\n\013TYPE_SINT64\020\022\"t\n\013C"
1166
+ "ardinality\022\027\n\023CARDINALITY_UNKNOWN\020\000\022\030\n\024C"
1167
+ "ARDINALITY_OPTIONAL\020\001\022\030\n\024CARDINALITY_REQ"
1168
+ "UIRED\020\002\022\030\n\024CARDINALITY_REPEATED\020\003\"\337\001\n\004En"
1169
+ "um\022\014\n\004name\030\001 \001(\t\022-\n\tenumvalue\030\002 \003(\0132\032.go"
1170
+ "ogle.protobuf.EnumValue\022(\n\007options\030\003 \003(\013"
1171
+ "2\027.google.protobuf.Option\0226\n\016source_cont"
1172
+ "ext\030\004 \001(\0132\036.google.protobuf.SourceContex"
1173
+ "t\022\'\n\006syntax\030\005 \001(\0162\027.google.protobuf.Synt"
1174
+ "ax\022\017\n\007edition\030\006 \001(\t\"S\n\tEnumValue\022\014\n\004name"
1175
+ "\030\001 \001(\t\022\016\n\006number\030\002 \001(\005\022(\n\007options\030\003 \003(\0132"
1176
+ "\027.google.protobuf.Option\";\n\006Option\022\014\n\004na"
1177
+ "me\030\001 \001(\t\022#\n\005value\030\002 \001(\0132\024.google.protobu"
1178
+ "f.Any*C\n\006Syntax\022\021\n\rSYNTAX_PROTO2\020\000\022\021\n\rSY"
1179
+ "NTAX_PROTO3\020\001\022\023\n\017SYNTAX_EDITIONS\020\002B{\n\023co"
1180
+ "m.google.protobufB\tTypeProtoP\001Z-google.g"
1181
+ "olang.org/protobuf/types/known/typepb\370\001\001"
1182
+ "\242\002\003GPB\252\002\036Google.Protobuf.WellKnownTypesb"
1183
+ "\006proto3"
1184
+ };
1185
+ static const ::_pbi::DescriptorTable* PROTOBUF_NONNULL const
1186
+ descriptor_table_google_2fprotobuf_2ftype_2eproto_deps[2] = {
1187
+ &::descriptor_table_google_2fprotobuf_2fany_2eproto,
1188
+ &::descriptor_table_google_2fprotobuf_2fsource_5fcontext_2eproto,
1189
+ };
1190
+ static ::absl::once_flag descriptor_table_google_2fprotobuf_2ftype_2eproto_once;
1191
+ PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_google_2fprotobuf_2ftype_2eproto = {
1192
+ false,
1193
+ false,
1194
+ 1647,
1195
+ descriptor_table_protodef_google_2fprotobuf_2ftype_2eproto,
1196
+ "google/protobuf/type.proto",
1197
+ &descriptor_table_google_2fprotobuf_2ftype_2eproto_once,
1198
+ descriptor_table_google_2fprotobuf_2ftype_2eproto_deps,
1199
+ 2,
1200
+ 5,
1201
+ schemas,
1202
+ file_message_globals,
1203
+ TableStruct_google_2fprotobuf_2ftype_2eproto::offsets,
1204
+ file_level_enum_descriptors_google_2fprotobuf_2ftype_2eproto,
1205
+ file_level_service_descriptors_google_2fprotobuf_2ftype_2eproto,
1206
+ };
1207
+ namespace google {
1208
+ namespace protobuf {
1209
+ [[nodiscard]] const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL
1210
+ Field_Kind_descriptor() {
1211
+ ::google::protobuf::internal::AssignDescriptors(&descriptor_table_google_2fprotobuf_2ftype_2eproto);
1212
+ return file_level_enum_descriptors_google_2fprotobuf_2ftype_2eproto[0];
1213
+ }
1214
+ PROTOBUF_CONSTINIT const uint32_t Field_Kind_internal_data_[] = {
1215
+ 1245184u, 0u, };
1216
+ [[nodiscard]] const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL
1217
+ Field_Cardinality_descriptor() {
1218
+ ::google::protobuf::internal::AssignDescriptors(&descriptor_table_google_2fprotobuf_2ftype_2eproto);
1219
+ return file_level_enum_descriptors_google_2fprotobuf_2ftype_2eproto[1];
1220
+ }
1221
+ PROTOBUF_CONSTINIT const uint32_t Field_Cardinality_internal_data_[] = {
1222
+ 262144u, 0u, };
1223
+ [[nodiscard]] const ::google::protobuf::EnumDescriptor* PROTOBUF_NONNULL
1224
+ Syntax_descriptor() {
1225
+ ::google::protobuf::internal::AssignDescriptors(&descriptor_table_google_2fprotobuf_2ftype_2eproto);
1226
+ return file_level_enum_descriptors_google_2fprotobuf_2ftype_2eproto[2];
1227
+ }
1228
+ PROTOBUF_CONSTINIT const uint32_t Syntax_internal_data_[] = {
1229
+ 196608u, 0u, };
1230
+ // ===================================================================
1231
+
1232
+ void Type::clear_source_context() {
1233
+ ::google::protobuf::internal::TSanWrite(&_impl_);
1234
+ if (_impl_.source_context_ != nullptr) _impl_.source_context_->Clear();
1235
+ ClearHasBit(_impl_._has_bits_[0], 0x00000020U);
1236
+ }
1237
+ Type::Type(::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
1238
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1239
+ : ::google::protobuf::Message(arena, Type_get_class_data()) {
1240
+ #else // PROTOBUF_CUSTOM_VTABLE
1241
+ : ::google::protobuf::Message(arena) {
1242
+ #endif // PROTOBUF_CUSTOM_VTABLE
1243
+ SharedCtor(arena);
1244
+ // @@protoc_insertion_point(arena_constructor:google.protobuf.Type)
1245
+ }
1246
+ PROTOBUF_NDEBUG_INLINE Type::Impl_::Impl_(
1247
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
1248
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
1249
+ [[maybe_unused]] const ::google::protobuf::Type& from_msg)
1250
+ : _has_bits_{from._has_bits_},
1251
+ _cached_size_{0},
1252
+ fields_ {
1253
+ visibility, ::_pbi::InternalMetadataOffset::Build<
1254
+ ::google::protobuf::Type,
1255
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.fields_)>()
1256
+ , from.fields_
1257
+ }
1258
+ ,
1259
+ oneofs_ {
1260
+ visibility, ::_pbi::InternalMetadataOffset::Build<
1261
+ ::google::protobuf::Type,
1262
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.oneofs_)>()
1263
+ , from.oneofs_
1264
+ }
1265
+ ,
1266
+ options_ {
1267
+ visibility, ::_pbi::InternalMetadataOffset::Build<
1268
+ ::google::protobuf::Type,
1269
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.options_)>()
1270
+ , from.options_
1271
+ }
1272
+ ,
1273
+ name_(arena, from.name_),
1274
+ edition_(arena, from.edition_) {}
1275
+
1276
+ Type::Type(
1277
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
1278
+ const Type& from)
1279
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1280
+ : ::google::protobuf::Message(arena, Type_get_class_data()) {
1281
+
1282
+ #else // PROTOBUF_CUSTOM_VTABLE
1283
+ : ::google::protobuf::Message(arena) {
1284
+ #endif // PROTOBUF_CUSTOM_VTABLE
1285
+ Type* const _this = this;
1286
+ (void)_this;
1287
+ _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
1288
+ from._internal_metadata_);
1289
+ new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from);
1290
+ ::uint32_t cached_has_bits = _impl_._has_bits_[0];
1291
+ _impl_.source_context_ = (CheckHasBit(cached_has_bits, 0x00000020U))
1292
+ ? ::google::protobuf::Message::CopyConstruct(arena, *from._impl_.source_context_)
1293
+ : nullptr;
1294
+ _impl_.syntax_ = from._impl_.syntax_;
1295
+
1296
+ // @@protoc_insertion_point(copy_constructor:google.protobuf.Type)
1297
+ }
1298
+ PROTOBUF_NDEBUG_INLINE Type::Impl_::Impl_(
1299
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
1300
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
1301
+ : _cached_size_{0},
1302
+ fields_ { visibility, ::_pbi::InternalMetadataOffset::Build<
1303
+ ::google::protobuf::Type,
1304
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.fields_)>()
1305
+ }
1306
+ ,
1307
+ oneofs_ { visibility, ::_pbi::InternalMetadataOffset::Build<
1308
+ ::google::protobuf::Type,
1309
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.oneofs_)>()
1310
+ }
1311
+ ,
1312
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
1313
+ ::google::protobuf::Type,
1314
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Type, _impl_.options_)>()
1315
+ }
1316
+ ,
1317
+ name_(arena),
1318
+ edition_(arena) {}
1319
+
1320
+ inline void Type::SharedCtor(::_pb::Arena* PROTOBUF_NULLABLE arena) {
1321
+ new (&_impl_) Impl_(internal_visibility(), arena);
1322
+ ::memset(reinterpret_cast<char*>(&_impl_) +
1323
+ offsetof(Impl_, source_context_),
1324
+ 0,
1325
+ offsetof(Impl_, syntax_) -
1326
+ offsetof(Impl_, source_context_) +
1327
+ sizeof(Impl_::syntax_));
1328
+ }
1329
+ Type::~Type() {
1330
+ // @@protoc_insertion_point(destructor:google.protobuf.Type)
1331
+ SharedDtor(*this);
1332
+ }
1333
+ inline void Type::SharedDtor(MessageLite& self) {
1334
+ Type& this_ = static_cast<Type&>(self);
1335
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
1336
+ this_.CheckHasBitConsistency();
1337
+ }
1338
+ this_._internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
1339
+ ABSL_DCHECK(this_.GetArena() == nullptr);
1340
+ this_._impl_.name_.Destroy();
1341
+ this_._impl_.edition_.Destroy();
1342
+ delete this_._impl_.source_context_;
1343
+ this_._impl_.~Impl_();
1344
+ }
1345
+
1346
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
1347
+ PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const
1348
+ ::google::protobuf::internal::ClassDataFull Type_class_data_ =
1349
+ Type::InternalGenerateClassData_(Type_globals_._default);
1350
+
1351
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
1352
+ Type::GetClassData() const {
1353
+ ::google::protobuf::internal::PrefetchToLocalCache(&Type_class_data_);
1354
+ ::google::protobuf::internal::PrefetchToLocalCache(Type_class_data_.tc_table);
1355
+ return Type_class_data_.base();
1356
+ }
1357
+ #else
1358
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
1359
+ Type::GetClassData() const {
1360
+ ::google::protobuf::internal::PrefetchToLocalCache(&Type_globals_);
1361
+ ::google::protobuf::internal::PrefetchToLocalCache(
1362
+ ::google::protobuf::internal::MessageGlobalsBase::ToParseTableBase(&Type_globals_));
1363
+ return Type_globals_.GetClassData();
1364
+ }
1365
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
1366
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
1367
+ PROTOBUF_CONSTINIT
1368
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const Type::ParseTableT_
1369
+ Type::_table_ =
1370
+ Type::InternalGenerateParseTable_(Type_class_data_.base());
1371
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
1372
+ PROTOBUF_NOINLINE void Type::Clear() {
1373
+ // @@protoc_insertion_point(message_clear_start:google.protobuf.Type)
1374
+ ::google::protobuf::internal::TSanWrite(&_impl_);
1375
+ ::uint32_t cached_has_bits = 0;
1376
+ // Prevent compiler warnings about cached_has_bits being unused
1377
+ (void) cached_has_bits;
1378
+
1379
+ cached_has_bits = _impl_._has_bits_[0];
1380
+ if (BatchCheckHasBit(cached_has_bits, 0x0000003fU)) {
1381
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1382
+ _impl_.fields_.Clear();
1383
+ }
1384
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1385
+ _impl_.oneofs_.Clear();
1386
+ }
1387
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1388
+ _impl_.options_.Clear();
1389
+ }
1390
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1391
+ _impl_.name_.ClearNonDefaultToEmpty();
1392
+ }
1393
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
1394
+ _impl_.edition_.ClearNonDefaultToEmpty();
1395
+ }
1396
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
1397
+ ABSL_DCHECK(_impl_.source_context_ != nullptr);
1398
+ _impl_.source_context_->Clear();
1399
+ }
1400
+ }
1401
+ _impl_.syntax_ = 0;
1402
+ _impl_._has_bits_.Clear();
1403
+ _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
1404
+ }
1405
+
1406
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1407
+ ::uint8_t* PROTOBUF_NONNULL Type::_InternalSerialize(
1408
+ const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
1409
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
1410
+ const Type& this_ = static_cast<const Type&>(base);
1411
+ #else // PROTOBUF_CUSTOM_VTABLE
1412
+ ::uint8_t* PROTOBUF_NONNULL Type::_InternalSerialize(
1413
+ ::uint8_t* PROTOBUF_NONNULL target,
1414
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
1415
+ const Type& this_ = *this;
1416
+ #endif // PROTOBUF_CUSTOM_VTABLE
1417
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
1418
+ this_.CheckHasBitConsistency();
1419
+ }
1420
+ // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.Type)
1421
+ ::uint32_t cached_has_bits = 0;
1422
+ (void)cached_has_bits;
1423
+
1424
+ cached_has_bits = this_._impl_._has_bits_[0];
1425
+ // string name = 1;
1426
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1427
+ if (!this_._internal_name().empty()) {
1428
+ const ::std::string& _s = this_._internal_name();
1429
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1430
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Type.name");
1431
+ target = stream->WriteStringMaybeAliased(1, _s, target);
1432
+ }
1433
+ }
1434
+
1435
+ // repeated .google.protobuf.Field fields = 2;
1436
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1437
+ for (unsigned i = 0, n = static_cast<unsigned>(
1438
+ this_._internal_fields_size());
1439
+ i < n; i++) {
1440
+ const auto& repfield = this_._internal_fields().Get(i);
1441
+ target =
1442
+ ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
1443
+ 2, repfield, repfield.GetCachedSize(),
1444
+ target, stream);
1445
+ }
1446
+ }
1447
+
1448
+ // repeated string oneofs = 3;
1449
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1450
+ for (int i = 0, n = this_._internal_oneofs_size(); i < n; ++i) {
1451
+ const auto& s = this_._internal_oneofs().Get(i);
1452
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1453
+ s.data(), static_cast<int>(s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Type.oneofs");
1454
+ target = stream->WriteString(3, s, target);
1455
+ }
1456
+ }
1457
+
1458
+ // repeated .google.protobuf.Option options = 4;
1459
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1460
+ for (unsigned i = 0, n = static_cast<unsigned>(
1461
+ this_._internal_options_size());
1462
+ i < n; i++) {
1463
+ const auto& repfield = this_._internal_options().Get(i);
1464
+ target =
1465
+ ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
1466
+ 4, repfield, repfield.GetCachedSize(),
1467
+ target, stream);
1468
+ }
1469
+ }
1470
+
1471
+ // .google.protobuf.SourceContext source_context = 5;
1472
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
1473
+ target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
1474
+ 5, *this_._impl_.source_context_, this_._impl_.source_context_->GetCachedSize(), target,
1475
+ stream);
1476
+ }
1477
+
1478
+ // .google.protobuf.Syntax syntax = 6;
1479
+ if (CheckHasBit(cached_has_bits, 0x00000040U)) {
1480
+ if (this_._internal_syntax() != 0) {
1481
+ target = stream->EnsureSpace(target);
1482
+ target = ::_pbi::WireFormatLite::WriteEnumToArray(
1483
+ 6, this_._internal_syntax(), target);
1484
+ }
1485
+ }
1486
+
1487
+ // string edition = 7;
1488
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
1489
+ if (!this_._internal_edition().empty()) {
1490
+ const ::std::string& _s = this_._internal_edition();
1491
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1492
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Type.edition");
1493
+ target = stream->WriteStringMaybeAliased(7, _s, target);
1494
+ }
1495
+ }
1496
+
1497
+ if (ABSL_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) {
1498
+ target =
1499
+ ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
1500
+ this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
1501
+ }
1502
+ // @@protoc_insertion_point(serialize_to_array_end:google.protobuf.Type)
1503
+ return target;
1504
+ }
1505
+
1506
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1507
+ ::size_t Type::ByteSizeLong(const MessageLite& base) {
1508
+ const Type& this_ = static_cast<const Type&>(base);
1509
+ #else // PROTOBUF_CUSTOM_VTABLE
1510
+ ::size_t Type::ByteSizeLong() const {
1511
+ const Type& this_ = *this;
1512
+ #endif // PROTOBUF_CUSTOM_VTABLE
1513
+ // @@protoc_insertion_point(message_byte_size_start:google.protobuf.Type)
1514
+ ::size_t total_size = 0;
1515
+
1516
+ ::uint32_t cached_has_bits = 0;
1517
+ // Prevent compiler warnings about cached_has_bits being unused
1518
+ (void)cached_has_bits;
1519
+
1520
+ ::_pbi::Prefetch5LinesFrom7Lines(&this_);
1521
+ cached_has_bits = this_._impl_._has_bits_[0];
1522
+ if (BatchCheckHasBit(cached_has_bits, 0x0000007fU)) {
1523
+ // repeated .google.protobuf.Field fields = 2;
1524
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1525
+ total_size += 1UL * this_._internal_fields_size();
1526
+ for (const auto& msg : this_._internal_fields()) {
1527
+ total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg);
1528
+ }
1529
+ }
1530
+ // repeated string oneofs = 3;
1531
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1532
+ total_size +=
1533
+ 1 * ::google::protobuf::internal::FromIntSize(this_._internal_oneofs().size());
1534
+ for (int i = 0, n = this_._internal_oneofs().size(); i < n; ++i) {
1535
+ total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
1536
+ this_._internal_oneofs().Get(i));
1537
+ }
1538
+ }
1539
+ // repeated .google.protobuf.Option options = 4;
1540
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1541
+ total_size += 1UL * this_._internal_options_size();
1542
+ for (const auto& msg : this_._internal_options()) {
1543
+ total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg);
1544
+ }
1545
+ }
1546
+ // string name = 1;
1547
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1548
+ if (!this_._internal_name().empty()) {
1549
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
1550
+ this_._internal_name());
1551
+ }
1552
+ }
1553
+ // string edition = 7;
1554
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
1555
+ if (!this_._internal_edition().empty()) {
1556
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
1557
+ this_._internal_edition());
1558
+ }
1559
+ }
1560
+ // .google.protobuf.SourceContext source_context = 5;
1561
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
1562
+ total_size += 1 +
1563
+ ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_context_);
1564
+ }
1565
+ // .google.protobuf.Syntax syntax = 6;
1566
+ if (CheckHasBit(cached_has_bits, 0x00000040U)) {
1567
+ if (this_._internal_syntax() != 0) {
1568
+ total_size += 1 +
1569
+ ::_pbi::WireFormatLite::EnumSize(this_._internal_syntax());
1570
+ }
1571
+ }
1572
+ }
1573
+ return this_.MaybeComputeUnknownFieldsSize(total_size,
1574
+ &this_._impl_._cached_size_);
1575
+ }
1576
+
1577
+ void Type::MergeImpl(::google::protobuf::MessageLite& to_msg,
1578
+ const ::google::protobuf::MessageLite& from_msg) {
1579
+ auto* const _this = static_cast<Type*>(&to_msg);
1580
+ auto& from = static_cast<const Type&>(from_msg);
1581
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
1582
+ from.CheckHasBitConsistency();
1583
+ }
1584
+ ::google::protobuf::Arena* arena = _this->GetArena();
1585
+ // @@protoc_insertion_point(class_specific_merge_from_start:google.protobuf.Type)
1586
+ ABSL_DCHECK_NE(&from, _this);
1587
+ ::uint32_t cached_has_bits = 0;
1588
+ (void)cached_has_bits;
1589
+
1590
+ cached_has_bits = from._impl_._has_bits_[0];
1591
+ if (BatchCheckHasBit(cached_has_bits, 0x0000007fU)) {
1592
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1593
+ _this->_internal_mutable_fields()->InternalMergeFromWithArena(
1594
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
1595
+ from._internal_fields());
1596
+ }
1597
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1598
+ _this->_internal_mutable_oneofs()->InternalMergeFromWithArena(
1599
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
1600
+ from._internal_oneofs());
1601
+ }
1602
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1603
+ _this->_internal_mutable_options()->InternalMergeFromWithArena(
1604
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
1605
+ from._internal_options());
1606
+ }
1607
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1608
+ if (!from._internal_name().empty()) {
1609
+ _this->_internal_set_name(from._internal_name());
1610
+ } else {
1611
+ if (_this->_impl_.name_.IsDefault()) {
1612
+ _this->_internal_set_name("");
1613
+ }
1614
+ }
1615
+ }
1616
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
1617
+ if (!from._internal_edition().empty()) {
1618
+ _this->_internal_set_edition(from._internal_edition());
1619
+ } else {
1620
+ if (_this->_impl_.edition_.IsDefault()) {
1621
+ _this->_internal_set_edition("");
1622
+ }
1623
+ }
1624
+ }
1625
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
1626
+ ABSL_DCHECK(from._impl_.source_context_ != nullptr);
1627
+ if (_this->_impl_.source_context_ == nullptr) {
1628
+ _this->_impl_.source_context_ = ::google::protobuf::Message::CopyConstruct(arena, *from._impl_.source_context_);
1629
+ } else {
1630
+ _this->_impl_.source_context_->MergeFrom(*from._impl_.source_context_);
1631
+ }
1632
+ }
1633
+ if (CheckHasBit(cached_has_bits, 0x00000040U)) {
1634
+ if (from._internal_syntax() != 0) {
1635
+ _this->_impl_.syntax_ = from._impl_.syntax_;
1636
+ }
1637
+ }
1638
+ }
1639
+ _this->_impl_._has_bits_[0] |= cached_has_bits;
1640
+ _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
1641
+ from._internal_metadata_);
1642
+ }
1643
+
1644
+ void Type::CopyFrom(const Type& from) {
1645
+ // @@protoc_insertion_point(class_specific_copy_from_start:google.protobuf.Type)
1646
+ if (&from == this) return;
1647
+ Clear();
1648
+ MergeFrom(from);
1649
+ }
1650
+
1651
+
1652
+ void Type::InternalSwap(Type* PROTOBUF_RESTRICT PROTOBUF_NONNULL other) {
1653
+ using ::std::swap;
1654
+ auto* arena = GetArena();
1655
+ ABSL_DCHECK_EQ(arena, other->GetArena());
1656
+ _internal_metadata_.InternalSwap(&other->_internal_metadata_);
1657
+ swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]);
1658
+ _impl_.fields_.InternalSwap(&other->_impl_.fields_);
1659
+ _impl_.oneofs_.InternalSwap(&other->_impl_.oneofs_);
1660
+ _impl_.options_.InternalSwap(&other->_impl_.options_);
1661
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena);
1662
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.edition_, &other->_impl_.edition_, arena);
1663
+ ::google::protobuf::internal::memswap<
1664
+ PROTOBUF_FIELD_OFFSET(Type, _impl_.syntax_)
1665
+ + sizeof(Type::_impl_.syntax_)
1666
+ - PROTOBUF_FIELD_OFFSET(Type, _impl_.source_context_)>(
1667
+ reinterpret_cast<char*>(&_impl_.source_context_),
1668
+ reinterpret_cast<char*>(&other->_impl_.source_context_));
1669
+ }
1670
+
1671
+ ::google::protobuf::Metadata Type::GetMetadata() const {
1672
+ return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full());
1673
+ }
1674
+ // ===================================================================
1675
+
1676
+ Field::Field(::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
1677
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1678
+ : ::google::protobuf::Message(arena, Field_get_class_data()) {
1679
+ #else // PROTOBUF_CUSTOM_VTABLE
1680
+ : ::google::protobuf::Message(arena) {
1681
+ #endif // PROTOBUF_CUSTOM_VTABLE
1682
+ SharedCtor(arena);
1683
+ // @@protoc_insertion_point(arena_constructor:google.protobuf.Field)
1684
+ }
1685
+ PROTOBUF_NDEBUG_INLINE Field::Impl_::Impl_(
1686
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
1687
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
1688
+ [[maybe_unused]] const ::google::protobuf::Field& from_msg)
1689
+ : _has_bits_{from._has_bits_},
1690
+ _cached_size_{0},
1691
+ options_ {
1692
+ visibility, ::_pbi::InternalMetadataOffset::Build<
1693
+ ::google::protobuf::Field,
1694
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.options_)>()
1695
+ , from.options_
1696
+ }
1697
+ ,
1698
+ name_(arena, from.name_),
1699
+ type_url_(arena, from.type_url_),
1700
+ json_name_(arena, from.json_name_),
1701
+ default_value_(arena, from.default_value_) {}
1702
+
1703
+ Field::Field(
1704
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
1705
+ const Field& from)
1706
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1707
+ : ::google::protobuf::Message(arena, Field_get_class_data()) {
1708
+
1709
+ #else // PROTOBUF_CUSTOM_VTABLE
1710
+ : ::google::protobuf::Message(arena) {
1711
+ #endif // PROTOBUF_CUSTOM_VTABLE
1712
+ Field* const _this = this;
1713
+ (void)_this;
1714
+ _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
1715
+ from._internal_metadata_);
1716
+ new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from);
1717
+ ::memcpy(reinterpret_cast<char*>(&_impl_) +
1718
+ offsetof(Impl_, kind_),
1719
+ reinterpret_cast<const char*>(&from._impl_) +
1720
+ offsetof(Impl_, kind_),
1721
+ offsetof(Impl_, packed_) -
1722
+ offsetof(Impl_, kind_) +
1723
+ sizeof(Impl_::packed_));
1724
+
1725
+ // @@protoc_insertion_point(copy_constructor:google.protobuf.Field)
1726
+ }
1727
+ PROTOBUF_NDEBUG_INLINE Field::Impl_::Impl_(
1728
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
1729
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
1730
+ : _cached_size_{0},
1731
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
1732
+ ::google::protobuf::Field,
1733
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Field, _impl_.options_)>()
1734
+ }
1735
+ ,
1736
+ name_(arena),
1737
+ type_url_(arena),
1738
+ json_name_(arena),
1739
+ default_value_(arena) {}
1740
+
1741
+ inline void Field::SharedCtor(::_pb::Arena* PROTOBUF_NULLABLE arena) {
1742
+ new (&_impl_) Impl_(internal_visibility(), arena);
1743
+ ::memset(reinterpret_cast<char*>(&_impl_) +
1744
+ offsetof(Impl_, kind_),
1745
+ 0,
1746
+ offsetof(Impl_, packed_) -
1747
+ offsetof(Impl_, kind_) +
1748
+ sizeof(Impl_::packed_));
1749
+ }
1750
+ Field::~Field() {
1751
+ // @@protoc_insertion_point(destructor:google.protobuf.Field)
1752
+ SharedDtor(*this);
1753
+ }
1754
+ inline void Field::SharedDtor(MessageLite& self) {
1755
+ Field& this_ = static_cast<Field&>(self);
1756
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
1757
+ this_.CheckHasBitConsistency();
1758
+ }
1759
+ this_._internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
1760
+ ABSL_DCHECK(this_.GetArena() == nullptr);
1761
+ this_._impl_.name_.Destroy();
1762
+ this_._impl_.type_url_.Destroy();
1763
+ this_._impl_.json_name_.Destroy();
1764
+ this_._impl_.default_value_.Destroy();
1765
+ this_._impl_.~Impl_();
1766
+ }
1767
+
1768
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
1769
+ PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const
1770
+ ::google::protobuf::internal::ClassDataFull Field_class_data_ =
1771
+ Field::InternalGenerateClassData_(Field_globals_._default);
1772
+
1773
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
1774
+ Field::GetClassData() const {
1775
+ ::google::protobuf::internal::PrefetchToLocalCache(&Field_class_data_);
1776
+ ::google::protobuf::internal::PrefetchToLocalCache(Field_class_data_.tc_table);
1777
+ return Field_class_data_.base();
1778
+ }
1779
+ #else
1780
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
1781
+ Field::GetClassData() const {
1782
+ ::google::protobuf::internal::PrefetchToLocalCache(&Field_globals_);
1783
+ ::google::protobuf::internal::PrefetchToLocalCache(
1784
+ ::google::protobuf::internal::MessageGlobalsBase::ToParseTableBase(&Field_globals_));
1785
+ return Field_globals_.GetClassData();
1786
+ }
1787
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
1788
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
1789
+ PROTOBUF_CONSTINIT
1790
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const Field::ParseTableT_
1791
+ Field::_table_ =
1792
+ Field::InternalGenerateParseTable_(Field_class_data_.base());
1793
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
1794
+ PROTOBUF_NOINLINE void Field::Clear() {
1795
+ // @@protoc_insertion_point(message_clear_start:google.protobuf.Field)
1796
+ ::google::protobuf::internal::TSanWrite(&_impl_);
1797
+ ::uint32_t cached_has_bits = 0;
1798
+ // Prevent compiler warnings about cached_has_bits being unused
1799
+ (void) cached_has_bits;
1800
+
1801
+ cached_has_bits = _impl_._has_bits_[0];
1802
+ if (BatchCheckHasBit(cached_has_bits, 0x0000001fU)) {
1803
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1804
+ _impl_.options_.Clear();
1805
+ }
1806
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1807
+ _impl_.name_.ClearNonDefaultToEmpty();
1808
+ }
1809
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1810
+ _impl_.type_url_.ClearNonDefaultToEmpty();
1811
+ }
1812
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1813
+ _impl_.json_name_.ClearNonDefaultToEmpty();
1814
+ }
1815
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
1816
+ _impl_.default_value_.ClearNonDefaultToEmpty();
1817
+ }
1818
+ }
1819
+ if (BatchCheckHasBit(cached_has_bits, 0x000000e0U)) {
1820
+ ::memset(&_impl_.kind_, 0, static_cast<::size_t>(
1821
+ reinterpret_cast<char*>(&_impl_.number_) -
1822
+ reinterpret_cast<char*>(&_impl_.kind_)) + sizeof(_impl_.number_));
1823
+ }
1824
+ if (BatchCheckHasBit(cached_has_bits, 0x00000300U)) {
1825
+ ::memset(&_impl_.oneof_index_, 0, static_cast<::size_t>(
1826
+ reinterpret_cast<char*>(&_impl_.packed_) -
1827
+ reinterpret_cast<char*>(&_impl_.oneof_index_)) + sizeof(_impl_.packed_));
1828
+ }
1829
+ _impl_._has_bits_.Clear();
1830
+ _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
1831
+ }
1832
+
1833
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1834
+ ::uint8_t* PROTOBUF_NONNULL Field::_InternalSerialize(
1835
+ const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
1836
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
1837
+ const Field& this_ = static_cast<const Field&>(base);
1838
+ #else // PROTOBUF_CUSTOM_VTABLE
1839
+ ::uint8_t* PROTOBUF_NONNULL Field::_InternalSerialize(
1840
+ ::uint8_t* PROTOBUF_NONNULL target,
1841
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
1842
+ const Field& this_ = *this;
1843
+ #endif // PROTOBUF_CUSTOM_VTABLE
1844
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
1845
+ this_.CheckHasBitConsistency();
1846
+ }
1847
+ // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.Field)
1848
+ ::uint32_t cached_has_bits = 0;
1849
+ (void)cached_has_bits;
1850
+
1851
+ cached_has_bits = this_._impl_._has_bits_[0];
1852
+ // .google.protobuf.Field.Kind kind = 1;
1853
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
1854
+ if (this_._internal_kind() != 0) {
1855
+ target = stream->EnsureSpace(target);
1856
+ target = ::_pbi::WireFormatLite::WriteEnumToArray(
1857
+ 1, this_._internal_kind(), target);
1858
+ }
1859
+ }
1860
+
1861
+ // .google.protobuf.Field.Cardinality cardinality = 2;
1862
+ if (CheckHasBit(cached_has_bits, 0x00000040U)) {
1863
+ if (this_._internal_cardinality() != 0) {
1864
+ target = stream->EnsureSpace(target);
1865
+ target = ::_pbi::WireFormatLite::WriteEnumToArray(
1866
+ 2, this_._internal_cardinality(), target);
1867
+ }
1868
+ }
1869
+
1870
+ // int32 number = 3;
1871
+ if (CheckHasBit(cached_has_bits, 0x00000080U)) {
1872
+ if (this_._internal_number() != 0) {
1873
+ target =
1874
+ ::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<3>(
1875
+ stream, this_._internal_number(), target);
1876
+ }
1877
+ }
1878
+
1879
+ // string name = 4;
1880
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1881
+ if (!this_._internal_name().empty()) {
1882
+ const ::std::string& _s = this_._internal_name();
1883
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1884
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Field.name");
1885
+ target = stream->WriteStringMaybeAliased(4, _s, target);
1886
+ }
1887
+ }
1888
+
1889
+ // string type_url = 6;
1890
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1891
+ if (!this_._internal_type_url().empty()) {
1892
+ const ::std::string& _s = this_._internal_type_url();
1893
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1894
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Field.type_url");
1895
+ target = stream->WriteStringMaybeAliased(6, _s, target);
1896
+ }
1897
+ }
1898
+
1899
+ // int32 oneof_index = 7;
1900
+ if (CheckHasBit(cached_has_bits, 0x00000100U)) {
1901
+ if (this_._internal_oneof_index() != 0) {
1902
+ target =
1903
+ ::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<7>(
1904
+ stream, this_._internal_oneof_index(), target);
1905
+ }
1906
+ }
1907
+
1908
+ // bool packed = 8;
1909
+ if (CheckHasBit(cached_has_bits, 0x00000200U)) {
1910
+ if (this_._internal_packed() != 0) {
1911
+ target = stream->EnsureSpace(target);
1912
+ target = ::_pbi::WireFormatLite::WriteBoolToArray(
1913
+ 8, this_._internal_packed(), target);
1914
+ }
1915
+ }
1916
+
1917
+ // repeated .google.protobuf.Option options = 9;
1918
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1919
+ for (unsigned i = 0, n = static_cast<unsigned>(
1920
+ this_._internal_options_size());
1921
+ i < n; i++) {
1922
+ const auto& repfield = this_._internal_options().Get(i);
1923
+ target =
1924
+ ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
1925
+ 9, repfield, repfield.GetCachedSize(),
1926
+ target, stream);
1927
+ }
1928
+ }
1929
+
1930
+ // string json_name = 10;
1931
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1932
+ if (!this_._internal_json_name().empty()) {
1933
+ const ::std::string& _s = this_._internal_json_name();
1934
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1935
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Field.json_name");
1936
+ target = stream->WriteStringMaybeAliased(10, _s, target);
1937
+ }
1938
+ }
1939
+
1940
+ // string default_value = 11;
1941
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
1942
+ if (!this_._internal_default_value().empty()) {
1943
+ const ::std::string& _s = this_._internal_default_value();
1944
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
1945
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Field.default_value");
1946
+ target = stream->WriteStringMaybeAliased(11, _s, target);
1947
+ }
1948
+ }
1949
+
1950
+ if (ABSL_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) {
1951
+ target =
1952
+ ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
1953
+ this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
1954
+ }
1955
+ // @@protoc_insertion_point(serialize_to_array_end:google.protobuf.Field)
1956
+ return target;
1957
+ }
1958
+
1959
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
1960
+ ::size_t Field::ByteSizeLong(const MessageLite& base) {
1961
+ const Field& this_ = static_cast<const Field&>(base);
1962
+ #else // PROTOBUF_CUSTOM_VTABLE
1963
+ ::size_t Field::ByteSizeLong() const {
1964
+ const Field& this_ = *this;
1965
+ #endif // PROTOBUF_CUSTOM_VTABLE
1966
+ // @@protoc_insertion_point(message_byte_size_start:google.protobuf.Field)
1967
+ ::size_t total_size = 0;
1968
+
1969
+ ::uint32_t cached_has_bits = 0;
1970
+ // Prevent compiler warnings about cached_has_bits being unused
1971
+ (void)cached_has_bits;
1972
+
1973
+ ::_pbi::Prefetch5LinesFrom7Lines(&this_);
1974
+ cached_has_bits = this_._impl_._has_bits_[0];
1975
+ if (BatchCheckHasBit(cached_has_bits, 0x000000ffU)) {
1976
+ // repeated .google.protobuf.Option options = 9;
1977
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
1978
+ total_size += 1UL * this_._internal_options_size();
1979
+ for (const auto& msg : this_._internal_options()) {
1980
+ total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg);
1981
+ }
1982
+ }
1983
+ // string name = 4;
1984
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
1985
+ if (!this_._internal_name().empty()) {
1986
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
1987
+ this_._internal_name());
1988
+ }
1989
+ }
1990
+ // string type_url = 6;
1991
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
1992
+ if (!this_._internal_type_url().empty()) {
1993
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
1994
+ this_._internal_type_url());
1995
+ }
1996
+ }
1997
+ // string json_name = 10;
1998
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
1999
+ if (!this_._internal_json_name().empty()) {
2000
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
2001
+ this_._internal_json_name());
2002
+ }
2003
+ }
2004
+ // string default_value = 11;
2005
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
2006
+ if (!this_._internal_default_value().empty()) {
2007
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
2008
+ this_._internal_default_value());
2009
+ }
2010
+ }
2011
+ // .google.protobuf.Field.Kind kind = 1;
2012
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
2013
+ if (this_._internal_kind() != 0) {
2014
+ total_size += 1 +
2015
+ ::_pbi::WireFormatLite::EnumSize(this_._internal_kind());
2016
+ }
2017
+ }
2018
+ // .google.protobuf.Field.Cardinality cardinality = 2;
2019
+ if (CheckHasBit(cached_has_bits, 0x00000040U)) {
2020
+ if (this_._internal_cardinality() != 0) {
2021
+ total_size += 1 +
2022
+ ::_pbi::WireFormatLite::EnumSize(this_._internal_cardinality());
2023
+ }
2024
+ }
2025
+ // int32 number = 3;
2026
+ if (CheckHasBit(cached_has_bits, 0x00000080U)) {
2027
+ if (this_._internal_number() != 0) {
2028
+ total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(
2029
+ this_._internal_number());
2030
+ }
2031
+ }
2032
+ }
2033
+ if (BatchCheckHasBit(cached_has_bits, 0x00000300U)) {
2034
+ // int32 oneof_index = 7;
2035
+ if (CheckHasBit(cached_has_bits, 0x00000100U)) {
2036
+ if (this_._internal_oneof_index() != 0) {
2037
+ total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(
2038
+ this_._internal_oneof_index());
2039
+ }
2040
+ }
2041
+ // bool packed = 8;
2042
+ if (CheckHasBit(cached_has_bits, 0x00000200U)) {
2043
+ if (this_._internal_packed() != 0) {
2044
+ total_size += 2;
2045
+ }
2046
+ }
2047
+ }
2048
+ return this_.MaybeComputeUnknownFieldsSize(total_size,
2049
+ &this_._impl_._cached_size_);
2050
+ }
2051
+
2052
+ void Field::MergeImpl(::google::protobuf::MessageLite& to_msg,
2053
+ const ::google::protobuf::MessageLite& from_msg) {
2054
+ auto* const _this = static_cast<Field*>(&to_msg);
2055
+ auto& from = static_cast<const Field&>(from_msg);
2056
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2057
+ from.CheckHasBitConsistency();
2058
+ }
2059
+ ::google::protobuf::Arena* arena = _this->GetArena();
2060
+ // @@protoc_insertion_point(class_specific_merge_from_start:google.protobuf.Field)
2061
+ ABSL_DCHECK_NE(&from, _this);
2062
+ ::uint32_t cached_has_bits = 0;
2063
+ (void)cached_has_bits;
2064
+
2065
+ cached_has_bits = from._impl_._has_bits_[0];
2066
+ if (BatchCheckHasBit(cached_has_bits, 0x000000ffU)) {
2067
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2068
+ _this->_internal_mutable_options()->InternalMergeFromWithArena(
2069
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
2070
+ from._internal_options());
2071
+ }
2072
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2073
+ if (!from._internal_name().empty()) {
2074
+ _this->_internal_set_name(from._internal_name());
2075
+ } else {
2076
+ if (_this->_impl_.name_.IsDefault()) {
2077
+ _this->_internal_set_name("");
2078
+ }
2079
+ }
2080
+ }
2081
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2082
+ if (!from._internal_type_url().empty()) {
2083
+ _this->_internal_set_type_url(from._internal_type_url());
2084
+ } else {
2085
+ if (_this->_impl_.type_url_.IsDefault()) {
2086
+ _this->_internal_set_type_url("");
2087
+ }
2088
+ }
2089
+ }
2090
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
2091
+ if (!from._internal_json_name().empty()) {
2092
+ _this->_internal_set_json_name(from._internal_json_name());
2093
+ } else {
2094
+ if (_this->_impl_.json_name_.IsDefault()) {
2095
+ _this->_internal_set_json_name("");
2096
+ }
2097
+ }
2098
+ }
2099
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
2100
+ if (!from._internal_default_value().empty()) {
2101
+ _this->_internal_set_default_value(from._internal_default_value());
2102
+ } else {
2103
+ if (_this->_impl_.default_value_.IsDefault()) {
2104
+ _this->_internal_set_default_value("");
2105
+ }
2106
+ }
2107
+ }
2108
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
2109
+ if (from._internal_kind() != 0) {
2110
+ _this->_impl_.kind_ = from._impl_.kind_;
2111
+ }
2112
+ }
2113
+ if (CheckHasBit(cached_has_bits, 0x00000040U)) {
2114
+ if (from._internal_cardinality() != 0) {
2115
+ _this->_impl_.cardinality_ = from._impl_.cardinality_;
2116
+ }
2117
+ }
2118
+ if (CheckHasBit(cached_has_bits, 0x00000080U)) {
2119
+ if (from._internal_number() != 0) {
2120
+ _this->_impl_.number_ = from._impl_.number_;
2121
+ }
2122
+ }
2123
+ }
2124
+ if (BatchCheckHasBit(cached_has_bits, 0x00000300U)) {
2125
+ if (CheckHasBit(cached_has_bits, 0x00000100U)) {
2126
+ if (from._internal_oneof_index() != 0) {
2127
+ _this->_impl_.oneof_index_ = from._impl_.oneof_index_;
2128
+ }
2129
+ }
2130
+ if (CheckHasBit(cached_has_bits, 0x00000200U)) {
2131
+ if (from._internal_packed() != 0) {
2132
+ _this->_impl_.packed_ = from._impl_.packed_;
2133
+ }
2134
+ }
2135
+ }
2136
+ _this->_impl_._has_bits_[0] |= cached_has_bits;
2137
+ _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
2138
+ from._internal_metadata_);
2139
+ }
2140
+
2141
+ void Field::CopyFrom(const Field& from) {
2142
+ // @@protoc_insertion_point(class_specific_copy_from_start:google.protobuf.Field)
2143
+ if (&from == this) return;
2144
+ Clear();
2145
+ MergeFrom(from);
2146
+ }
2147
+
2148
+
2149
+ void Field::InternalSwap(Field* PROTOBUF_RESTRICT PROTOBUF_NONNULL other) {
2150
+ using ::std::swap;
2151
+ auto* arena = GetArena();
2152
+ ABSL_DCHECK_EQ(arena, other->GetArena());
2153
+ _internal_metadata_.InternalSwap(&other->_internal_metadata_);
2154
+ swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]);
2155
+ _impl_.options_.InternalSwap(&other->_impl_.options_);
2156
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena);
2157
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.type_url_, &other->_impl_.type_url_, arena);
2158
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.json_name_, &other->_impl_.json_name_, arena);
2159
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.default_value_, &other->_impl_.default_value_, arena);
2160
+ ::google::protobuf::internal::memswap<
2161
+ PROTOBUF_FIELD_OFFSET(Field, _impl_.packed_)
2162
+ + sizeof(Field::_impl_.packed_)
2163
+ - PROTOBUF_FIELD_OFFSET(Field, _impl_.kind_)>(
2164
+ reinterpret_cast<char*>(&_impl_.kind_),
2165
+ reinterpret_cast<char*>(&other->_impl_.kind_));
2166
+ }
2167
+
2168
+ ::google::protobuf::Metadata Field::GetMetadata() const {
2169
+ return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full());
2170
+ }
2171
+ // ===================================================================
2172
+
2173
+ void Enum::clear_source_context() {
2174
+ ::google::protobuf::internal::TSanWrite(&_impl_);
2175
+ if (_impl_.source_context_ != nullptr) _impl_.source_context_->Clear();
2176
+ ClearHasBit(_impl_._has_bits_[0], 0x00000010U);
2177
+ }
2178
+ Enum::Enum(::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
2179
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2180
+ : ::google::protobuf::Message(arena, Enum_get_class_data()) {
2181
+ #else // PROTOBUF_CUSTOM_VTABLE
2182
+ : ::google::protobuf::Message(arena) {
2183
+ #endif // PROTOBUF_CUSTOM_VTABLE
2184
+ SharedCtor(arena);
2185
+ // @@protoc_insertion_point(arena_constructor:google.protobuf.Enum)
2186
+ }
2187
+ PROTOBUF_NDEBUG_INLINE Enum::Impl_::Impl_(
2188
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
2189
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
2190
+ [[maybe_unused]] const ::google::protobuf::Enum& from_msg)
2191
+ : _has_bits_{from._has_bits_},
2192
+ _cached_size_{0},
2193
+ enumvalue_ {
2194
+ visibility, ::_pbi::InternalMetadataOffset::Build<
2195
+ ::google::protobuf::Enum,
2196
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.enumvalue_)>()
2197
+ , from.enumvalue_
2198
+ }
2199
+ ,
2200
+ options_ {
2201
+ visibility, ::_pbi::InternalMetadataOffset::Build<
2202
+ ::google::protobuf::Enum,
2203
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.options_)>()
2204
+ , from.options_
2205
+ }
2206
+ ,
2207
+ name_(arena, from.name_),
2208
+ edition_(arena, from.edition_) {}
2209
+
2210
+ Enum::Enum(
2211
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
2212
+ const Enum& from)
2213
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2214
+ : ::google::protobuf::Message(arena, Enum_get_class_data()) {
2215
+
2216
+ #else // PROTOBUF_CUSTOM_VTABLE
2217
+ : ::google::protobuf::Message(arena) {
2218
+ #endif // PROTOBUF_CUSTOM_VTABLE
2219
+ Enum* const _this = this;
2220
+ (void)_this;
2221
+ _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
2222
+ from._internal_metadata_);
2223
+ new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from);
2224
+ ::uint32_t cached_has_bits = _impl_._has_bits_[0];
2225
+ _impl_.source_context_ = (CheckHasBit(cached_has_bits, 0x00000010U))
2226
+ ? ::google::protobuf::Message::CopyConstruct(arena, *from._impl_.source_context_)
2227
+ : nullptr;
2228
+ _impl_.syntax_ = from._impl_.syntax_;
2229
+
2230
+ // @@protoc_insertion_point(copy_constructor:google.protobuf.Enum)
2231
+ }
2232
+ PROTOBUF_NDEBUG_INLINE Enum::Impl_::Impl_(
2233
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
2234
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
2235
+ : _cached_size_{0},
2236
+ enumvalue_ { visibility, ::_pbi::InternalMetadataOffset::Build<
2237
+ ::google::protobuf::Enum,
2238
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.enumvalue_)>()
2239
+ }
2240
+ ,
2241
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
2242
+ ::google::protobuf::Enum,
2243
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::Enum, _impl_.options_)>()
2244
+ }
2245
+ ,
2246
+ name_(arena),
2247
+ edition_(arena) {}
2248
+
2249
+ inline void Enum::SharedCtor(::_pb::Arena* PROTOBUF_NULLABLE arena) {
2250
+ new (&_impl_) Impl_(internal_visibility(), arena);
2251
+ ::memset(reinterpret_cast<char*>(&_impl_) +
2252
+ offsetof(Impl_, source_context_),
2253
+ 0,
2254
+ offsetof(Impl_, syntax_) -
2255
+ offsetof(Impl_, source_context_) +
2256
+ sizeof(Impl_::syntax_));
2257
+ }
2258
+ Enum::~Enum() {
2259
+ // @@protoc_insertion_point(destructor:google.protobuf.Enum)
2260
+ SharedDtor(*this);
2261
+ }
2262
+ inline void Enum::SharedDtor(MessageLite& self) {
2263
+ Enum& this_ = static_cast<Enum&>(self);
2264
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2265
+ this_.CheckHasBitConsistency();
2266
+ }
2267
+ this_._internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
2268
+ ABSL_DCHECK(this_.GetArena() == nullptr);
2269
+ this_._impl_.name_.Destroy();
2270
+ this_._impl_.edition_.Destroy();
2271
+ delete this_._impl_.source_context_;
2272
+ this_._impl_.~Impl_();
2273
+ }
2274
+
2275
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
2276
+ PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const
2277
+ ::google::protobuf::internal::ClassDataFull Enum_class_data_ =
2278
+ Enum::InternalGenerateClassData_(Enum_globals_._default);
2279
+
2280
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
2281
+ Enum::GetClassData() const {
2282
+ ::google::protobuf::internal::PrefetchToLocalCache(&Enum_class_data_);
2283
+ ::google::protobuf::internal::PrefetchToLocalCache(Enum_class_data_.tc_table);
2284
+ return Enum_class_data_.base();
2285
+ }
2286
+ #else
2287
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
2288
+ Enum::GetClassData() const {
2289
+ ::google::protobuf::internal::PrefetchToLocalCache(&Enum_globals_);
2290
+ ::google::protobuf::internal::PrefetchToLocalCache(
2291
+ ::google::protobuf::internal::MessageGlobalsBase::ToParseTableBase(&Enum_globals_));
2292
+ return Enum_globals_.GetClassData();
2293
+ }
2294
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
2295
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
2296
+ PROTOBUF_CONSTINIT
2297
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const Enum::ParseTableT_
2298
+ Enum::_table_ =
2299
+ Enum::InternalGenerateParseTable_(Enum_class_data_.base());
2300
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
2301
+ PROTOBUF_NOINLINE void Enum::Clear() {
2302
+ // @@protoc_insertion_point(message_clear_start:google.protobuf.Enum)
2303
+ ::google::protobuf::internal::TSanWrite(&_impl_);
2304
+ ::uint32_t cached_has_bits = 0;
2305
+ // Prevent compiler warnings about cached_has_bits being unused
2306
+ (void) cached_has_bits;
2307
+
2308
+ cached_has_bits = _impl_._has_bits_[0];
2309
+ if (BatchCheckHasBit(cached_has_bits, 0x0000001fU)) {
2310
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2311
+ _impl_.enumvalue_.Clear();
2312
+ }
2313
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2314
+ _impl_.options_.Clear();
2315
+ }
2316
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2317
+ _impl_.name_.ClearNonDefaultToEmpty();
2318
+ }
2319
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
2320
+ _impl_.edition_.ClearNonDefaultToEmpty();
2321
+ }
2322
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
2323
+ ABSL_DCHECK(_impl_.source_context_ != nullptr);
2324
+ _impl_.source_context_->Clear();
2325
+ }
2326
+ }
2327
+ _impl_.syntax_ = 0;
2328
+ _impl_._has_bits_.Clear();
2329
+ _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
2330
+ }
2331
+
2332
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2333
+ ::uint8_t* PROTOBUF_NONNULL Enum::_InternalSerialize(
2334
+ const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
2335
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
2336
+ const Enum& this_ = static_cast<const Enum&>(base);
2337
+ #else // PROTOBUF_CUSTOM_VTABLE
2338
+ ::uint8_t* PROTOBUF_NONNULL Enum::_InternalSerialize(
2339
+ ::uint8_t* PROTOBUF_NONNULL target,
2340
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
2341
+ const Enum& this_ = *this;
2342
+ #endif // PROTOBUF_CUSTOM_VTABLE
2343
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2344
+ this_.CheckHasBitConsistency();
2345
+ }
2346
+ // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.Enum)
2347
+ ::uint32_t cached_has_bits = 0;
2348
+ (void)cached_has_bits;
2349
+
2350
+ cached_has_bits = this_._impl_._has_bits_[0];
2351
+ // string name = 1;
2352
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2353
+ if (!this_._internal_name().empty()) {
2354
+ const ::std::string& _s = this_._internal_name();
2355
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
2356
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Enum.name");
2357
+ target = stream->WriteStringMaybeAliased(1, _s, target);
2358
+ }
2359
+ }
2360
+
2361
+ // repeated .google.protobuf.EnumValue enumvalue = 2;
2362
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2363
+ for (unsigned i = 0, n = static_cast<unsigned>(
2364
+ this_._internal_enumvalue_size());
2365
+ i < n; i++) {
2366
+ const auto& repfield = this_._internal_enumvalue().Get(i);
2367
+ target =
2368
+ ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
2369
+ 2, repfield, repfield.GetCachedSize(),
2370
+ target, stream);
2371
+ }
2372
+ }
2373
+
2374
+ // repeated .google.protobuf.Option options = 3;
2375
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2376
+ for (unsigned i = 0, n = static_cast<unsigned>(
2377
+ this_._internal_options_size());
2378
+ i < n; i++) {
2379
+ const auto& repfield = this_._internal_options().Get(i);
2380
+ target =
2381
+ ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
2382
+ 3, repfield, repfield.GetCachedSize(),
2383
+ target, stream);
2384
+ }
2385
+ }
2386
+
2387
+ // .google.protobuf.SourceContext source_context = 4;
2388
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
2389
+ target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
2390
+ 4, *this_._impl_.source_context_, this_._impl_.source_context_->GetCachedSize(), target,
2391
+ stream);
2392
+ }
2393
+
2394
+ // .google.protobuf.Syntax syntax = 5;
2395
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
2396
+ if (this_._internal_syntax() != 0) {
2397
+ target = stream->EnsureSpace(target);
2398
+ target = ::_pbi::WireFormatLite::WriteEnumToArray(
2399
+ 5, this_._internal_syntax(), target);
2400
+ }
2401
+ }
2402
+
2403
+ // string edition = 6;
2404
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
2405
+ if (!this_._internal_edition().empty()) {
2406
+ const ::std::string& _s = this_._internal_edition();
2407
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
2408
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Enum.edition");
2409
+ target = stream->WriteStringMaybeAliased(6, _s, target);
2410
+ }
2411
+ }
2412
+
2413
+ if (ABSL_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) {
2414
+ target =
2415
+ ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
2416
+ this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
2417
+ }
2418
+ // @@protoc_insertion_point(serialize_to_array_end:google.protobuf.Enum)
2419
+ return target;
2420
+ }
2421
+
2422
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2423
+ ::size_t Enum::ByteSizeLong(const MessageLite& base) {
2424
+ const Enum& this_ = static_cast<const Enum&>(base);
2425
+ #else // PROTOBUF_CUSTOM_VTABLE
2426
+ ::size_t Enum::ByteSizeLong() const {
2427
+ const Enum& this_ = *this;
2428
+ #endif // PROTOBUF_CUSTOM_VTABLE
2429
+ // @@protoc_insertion_point(message_byte_size_start:google.protobuf.Enum)
2430
+ ::size_t total_size = 0;
2431
+
2432
+ ::uint32_t cached_has_bits = 0;
2433
+ // Prevent compiler warnings about cached_has_bits being unused
2434
+ (void)cached_has_bits;
2435
+
2436
+ ::_pbi::Prefetch5LinesFrom7Lines(&this_);
2437
+ cached_has_bits = this_._impl_._has_bits_[0];
2438
+ if (BatchCheckHasBit(cached_has_bits, 0x0000003fU)) {
2439
+ // repeated .google.protobuf.EnumValue enumvalue = 2;
2440
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2441
+ total_size += 1UL * this_._internal_enumvalue_size();
2442
+ for (const auto& msg : this_._internal_enumvalue()) {
2443
+ total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg);
2444
+ }
2445
+ }
2446
+ // repeated .google.protobuf.Option options = 3;
2447
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2448
+ total_size += 1UL * this_._internal_options_size();
2449
+ for (const auto& msg : this_._internal_options()) {
2450
+ total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg);
2451
+ }
2452
+ }
2453
+ // string name = 1;
2454
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2455
+ if (!this_._internal_name().empty()) {
2456
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
2457
+ this_._internal_name());
2458
+ }
2459
+ }
2460
+ // string edition = 6;
2461
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
2462
+ if (!this_._internal_edition().empty()) {
2463
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
2464
+ this_._internal_edition());
2465
+ }
2466
+ }
2467
+ // .google.protobuf.SourceContext source_context = 4;
2468
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
2469
+ total_size += 1 +
2470
+ ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.source_context_);
2471
+ }
2472
+ // .google.protobuf.Syntax syntax = 5;
2473
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
2474
+ if (this_._internal_syntax() != 0) {
2475
+ total_size += 1 +
2476
+ ::_pbi::WireFormatLite::EnumSize(this_._internal_syntax());
2477
+ }
2478
+ }
2479
+ }
2480
+ return this_.MaybeComputeUnknownFieldsSize(total_size,
2481
+ &this_._impl_._cached_size_);
2482
+ }
2483
+
2484
+ void Enum::MergeImpl(::google::protobuf::MessageLite& to_msg,
2485
+ const ::google::protobuf::MessageLite& from_msg) {
2486
+ auto* const _this = static_cast<Enum*>(&to_msg);
2487
+ auto& from = static_cast<const Enum&>(from_msg);
2488
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2489
+ from.CheckHasBitConsistency();
2490
+ }
2491
+ ::google::protobuf::Arena* arena = _this->GetArena();
2492
+ // @@protoc_insertion_point(class_specific_merge_from_start:google.protobuf.Enum)
2493
+ ABSL_DCHECK_NE(&from, _this);
2494
+ ::uint32_t cached_has_bits = 0;
2495
+ (void)cached_has_bits;
2496
+
2497
+ cached_has_bits = from._impl_._has_bits_[0];
2498
+ if (BatchCheckHasBit(cached_has_bits, 0x0000003fU)) {
2499
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2500
+ _this->_internal_mutable_enumvalue()->InternalMergeFromWithArena(
2501
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
2502
+ from._internal_enumvalue());
2503
+ }
2504
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2505
+ _this->_internal_mutable_options()->InternalMergeFromWithArena(
2506
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
2507
+ from._internal_options());
2508
+ }
2509
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2510
+ if (!from._internal_name().empty()) {
2511
+ _this->_internal_set_name(from._internal_name());
2512
+ } else {
2513
+ if (_this->_impl_.name_.IsDefault()) {
2514
+ _this->_internal_set_name("");
2515
+ }
2516
+ }
2517
+ }
2518
+ if (CheckHasBit(cached_has_bits, 0x00000008U)) {
2519
+ if (!from._internal_edition().empty()) {
2520
+ _this->_internal_set_edition(from._internal_edition());
2521
+ } else {
2522
+ if (_this->_impl_.edition_.IsDefault()) {
2523
+ _this->_internal_set_edition("");
2524
+ }
2525
+ }
2526
+ }
2527
+ if (CheckHasBit(cached_has_bits, 0x00000010U)) {
2528
+ ABSL_DCHECK(from._impl_.source_context_ != nullptr);
2529
+ if (_this->_impl_.source_context_ == nullptr) {
2530
+ _this->_impl_.source_context_ = ::google::protobuf::Message::CopyConstruct(arena, *from._impl_.source_context_);
2531
+ } else {
2532
+ _this->_impl_.source_context_->MergeFrom(*from._impl_.source_context_);
2533
+ }
2534
+ }
2535
+ if (CheckHasBit(cached_has_bits, 0x00000020U)) {
2536
+ if (from._internal_syntax() != 0) {
2537
+ _this->_impl_.syntax_ = from._impl_.syntax_;
2538
+ }
2539
+ }
2540
+ }
2541
+ _this->_impl_._has_bits_[0] |= cached_has_bits;
2542
+ _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
2543
+ from._internal_metadata_);
2544
+ }
2545
+
2546
+ void Enum::CopyFrom(const Enum& from) {
2547
+ // @@protoc_insertion_point(class_specific_copy_from_start:google.protobuf.Enum)
2548
+ if (&from == this) return;
2549
+ Clear();
2550
+ MergeFrom(from);
2551
+ }
2552
+
2553
+
2554
+ void Enum::InternalSwap(Enum* PROTOBUF_RESTRICT PROTOBUF_NONNULL other) {
2555
+ using ::std::swap;
2556
+ auto* arena = GetArena();
2557
+ ABSL_DCHECK_EQ(arena, other->GetArena());
2558
+ _internal_metadata_.InternalSwap(&other->_internal_metadata_);
2559
+ swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]);
2560
+ _impl_.enumvalue_.InternalSwap(&other->_impl_.enumvalue_);
2561
+ _impl_.options_.InternalSwap(&other->_impl_.options_);
2562
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena);
2563
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.edition_, &other->_impl_.edition_, arena);
2564
+ ::google::protobuf::internal::memswap<
2565
+ PROTOBUF_FIELD_OFFSET(Enum, _impl_.syntax_)
2566
+ + sizeof(Enum::_impl_.syntax_)
2567
+ - PROTOBUF_FIELD_OFFSET(Enum, _impl_.source_context_)>(
2568
+ reinterpret_cast<char*>(&_impl_.source_context_),
2569
+ reinterpret_cast<char*>(&other->_impl_.source_context_));
2570
+ }
2571
+
2572
+ ::google::protobuf::Metadata Enum::GetMetadata() const {
2573
+ return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full());
2574
+ }
2575
+ // ===================================================================
2576
+
2577
+ EnumValue::EnumValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
2578
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2579
+ : ::google::protobuf::Message(arena, EnumValue_get_class_data()) {
2580
+ #else // PROTOBUF_CUSTOM_VTABLE
2581
+ : ::google::protobuf::Message(arena) {
2582
+ #endif // PROTOBUF_CUSTOM_VTABLE
2583
+ SharedCtor(arena);
2584
+ // @@protoc_insertion_point(arena_constructor:google.protobuf.EnumValue)
2585
+ }
2586
+ PROTOBUF_NDEBUG_INLINE EnumValue::Impl_::Impl_(
2587
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
2588
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
2589
+ [[maybe_unused]] const ::google::protobuf::EnumValue& from_msg)
2590
+ : _has_bits_{from._has_bits_},
2591
+ _cached_size_{0},
2592
+ options_ {
2593
+ visibility, ::_pbi::InternalMetadataOffset::Build<
2594
+ ::google::protobuf::EnumValue,
2595
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_.options_)>()
2596
+ , from.options_
2597
+ }
2598
+ ,
2599
+ name_(arena, from.name_) {}
2600
+
2601
+ EnumValue::EnumValue(
2602
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
2603
+ const EnumValue& from)
2604
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2605
+ : ::google::protobuf::Message(arena, EnumValue_get_class_data()) {
2606
+
2607
+ #else // PROTOBUF_CUSTOM_VTABLE
2608
+ : ::google::protobuf::Message(arena) {
2609
+ #endif // PROTOBUF_CUSTOM_VTABLE
2610
+ EnumValue* const _this = this;
2611
+ (void)_this;
2612
+ _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
2613
+ from._internal_metadata_);
2614
+ new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from);
2615
+ _impl_.number_ = from._impl_.number_;
2616
+
2617
+ // @@protoc_insertion_point(copy_constructor:google.protobuf.EnumValue)
2618
+ }
2619
+ PROTOBUF_NDEBUG_INLINE EnumValue::Impl_::Impl_(
2620
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
2621
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
2622
+ : _cached_size_{0},
2623
+ options_ { visibility, ::_pbi::InternalMetadataOffset::Build<
2624
+ ::google::protobuf::EnumValue,
2625
+ PROTOBUF_FIELD_OFFSET(::google::protobuf::EnumValue, _impl_.options_)>()
2626
+ }
2627
+ ,
2628
+ name_(arena) {}
2629
+
2630
+ inline void EnumValue::SharedCtor(::_pb::Arena* PROTOBUF_NULLABLE arena) {
2631
+ new (&_impl_) Impl_(internal_visibility(), arena);
2632
+ _impl_.number_ = {};
2633
+ }
2634
+ EnumValue::~EnumValue() {
2635
+ // @@protoc_insertion_point(destructor:google.protobuf.EnumValue)
2636
+ SharedDtor(*this);
2637
+ }
2638
+ inline void EnumValue::SharedDtor(MessageLite& self) {
2639
+ EnumValue& this_ = static_cast<EnumValue&>(self);
2640
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2641
+ this_.CheckHasBitConsistency();
2642
+ }
2643
+ this_._internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
2644
+ ABSL_DCHECK(this_.GetArena() == nullptr);
2645
+ this_._impl_.name_.Destroy();
2646
+ this_._impl_.~Impl_();
2647
+ }
2648
+
2649
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
2650
+ PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const
2651
+ ::google::protobuf::internal::ClassDataFull EnumValue_class_data_ =
2652
+ EnumValue::InternalGenerateClassData_(EnumValue_globals_._default);
2653
+
2654
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
2655
+ EnumValue::GetClassData() const {
2656
+ ::google::protobuf::internal::PrefetchToLocalCache(&EnumValue_class_data_);
2657
+ ::google::protobuf::internal::PrefetchToLocalCache(EnumValue_class_data_.tc_table);
2658
+ return EnumValue_class_data_.base();
2659
+ }
2660
+ #else
2661
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
2662
+ EnumValue::GetClassData() const {
2663
+ ::google::protobuf::internal::PrefetchToLocalCache(&EnumValue_globals_);
2664
+ ::google::protobuf::internal::PrefetchToLocalCache(
2665
+ ::google::protobuf::internal::MessageGlobalsBase::ToParseTableBase(&EnumValue_globals_));
2666
+ return EnumValue_globals_.GetClassData();
2667
+ }
2668
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
2669
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
2670
+ PROTOBUF_CONSTINIT
2671
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const EnumValue::ParseTableT_
2672
+ EnumValue::_table_ =
2673
+ EnumValue::InternalGenerateParseTable_(EnumValue_class_data_.base());
2674
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
2675
+ PROTOBUF_NOINLINE void EnumValue::Clear() {
2676
+ // @@protoc_insertion_point(message_clear_start:google.protobuf.EnumValue)
2677
+ ::google::protobuf::internal::TSanWrite(&_impl_);
2678
+ ::uint32_t cached_has_bits = 0;
2679
+ // Prevent compiler warnings about cached_has_bits being unused
2680
+ (void) cached_has_bits;
2681
+
2682
+ cached_has_bits = _impl_._has_bits_[0];
2683
+ if (BatchCheckHasBit(cached_has_bits, 0x00000003U)) {
2684
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2685
+ _impl_.options_.Clear();
2686
+ }
2687
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2688
+ _impl_.name_.ClearNonDefaultToEmpty();
2689
+ }
2690
+ }
2691
+ _impl_.number_ = 0;
2692
+ _impl_._has_bits_.Clear();
2693
+ _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
2694
+ }
2695
+
2696
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2697
+ ::uint8_t* PROTOBUF_NONNULL EnumValue::_InternalSerialize(
2698
+ const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
2699
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
2700
+ const EnumValue& this_ = static_cast<const EnumValue&>(base);
2701
+ #else // PROTOBUF_CUSTOM_VTABLE
2702
+ ::uint8_t* PROTOBUF_NONNULL EnumValue::_InternalSerialize(
2703
+ ::uint8_t* PROTOBUF_NONNULL target,
2704
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
2705
+ const EnumValue& this_ = *this;
2706
+ #endif // PROTOBUF_CUSTOM_VTABLE
2707
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2708
+ this_.CheckHasBitConsistency();
2709
+ }
2710
+ // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.EnumValue)
2711
+ ::uint32_t cached_has_bits = 0;
2712
+ (void)cached_has_bits;
2713
+
2714
+ cached_has_bits = this_._impl_._has_bits_[0];
2715
+ // string name = 1;
2716
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2717
+ if (!this_._internal_name().empty()) {
2718
+ const ::std::string& _s = this_._internal_name();
2719
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
2720
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.EnumValue.name");
2721
+ target = stream->WriteStringMaybeAliased(1, _s, target);
2722
+ }
2723
+ }
2724
+
2725
+ // int32 number = 2;
2726
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2727
+ if (this_._internal_number() != 0) {
2728
+ target =
2729
+ ::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<2>(
2730
+ stream, this_._internal_number(), target);
2731
+ }
2732
+ }
2733
+
2734
+ // repeated .google.protobuf.Option options = 3;
2735
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2736
+ for (unsigned i = 0, n = static_cast<unsigned>(
2737
+ this_._internal_options_size());
2738
+ i < n; i++) {
2739
+ const auto& repfield = this_._internal_options().Get(i);
2740
+ target =
2741
+ ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
2742
+ 3, repfield, repfield.GetCachedSize(),
2743
+ target, stream);
2744
+ }
2745
+ }
2746
+
2747
+ if (ABSL_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) {
2748
+ target =
2749
+ ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
2750
+ this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
2751
+ }
2752
+ // @@protoc_insertion_point(serialize_to_array_end:google.protobuf.EnumValue)
2753
+ return target;
2754
+ }
2755
+
2756
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2757
+ ::size_t EnumValue::ByteSizeLong(const MessageLite& base) {
2758
+ const EnumValue& this_ = static_cast<const EnumValue&>(base);
2759
+ #else // PROTOBUF_CUSTOM_VTABLE
2760
+ ::size_t EnumValue::ByteSizeLong() const {
2761
+ const EnumValue& this_ = *this;
2762
+ #endif // PROTOBUF_CUSTOM_VTABLE
2763
+ // @@protoc_insertion_point(message_byte_size_start:google.protobuf.EnumValue)
2764
+ ::size_t total_size = 0;
2765
+
2766
+ ::uint32_t cached_has_bits = 0;
2767
+ // Prevent compiler warnings about cached_has_bits being unused
2768
+ (void)cached_has_bits;
2769
+
2770
+ ::_pbi::Prefetch5LinesFrom7Lines(&this_);
2771
+ cached_has_bits = this_._impl_._has_bits_[0];
2772
+ if (BatchCheckHasBit(cached_has_bits, 0x00000007U)) {
2773
+ // repeated .google.protobuf.Option options = 3;
2774
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2775
+ total_size += 1UL * this_._internal_options_size();
2776
+ for (const auto& msg : this_._internal_options()) {
2777
+ total_size += ::google::protobuf::internal::WireFormatLite::MessageSize(msg);
2778
+ }
2779
+ }
2780
+ // string name = 1;
2781
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2782
+ if (!this_._internal_name().empty()) {
2783
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
2784
+ this_._internal_name());
2785
+ }
2786
+ }
2787
+ // int32 number = 2;
2788
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2789
+ if (this_._internal_number() != 0) {
2790
+ total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(
2791
+ this_._internal_number());
2792
+ }
2793
+ }
2794
+ }
2795
+ return this_.MaybeComputeUnknownFieldsSize(total_size,
2796
+ &this_._impl_._cached_size_);
2797
+ }
2798
+
2799
+ void EnumValue::MergeImpl(::google::protobuf::MessageLite& to_msg,
2800
+ const ::google::protobuf::MessageLite& from_msg) {
2801
+ auto* const _this = static_cast<EnumValue*>(&to_msg);
2802
+ auto& from = static_cast<const EnumValue&>(from_msg);
2803
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2804
+ from.CheckHasBitConsistency();
2805
+ }
2806
+ ::google::protobuf::Arena* arena = _this->GetArena();
2807
+ // @@protoc_insertion_point(class_specific_merge_from_start:google.protobuf.EnumValue)
2808
+ ABSL_DCHECK_NE(&from, _this);
2809
+ ::uint32_t cached_has_bits = 0;
2810
+ (void)cached_has_bits;
2811
+
2812
+ cached_has_bits = from._impl_._has_bits_[0];
2813
+ if (BatchCheckHasBit(cached_has_bits, 0x00000007U)) {
2814
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2815
+ _this->_internal_mutable_options()->InternalMergeFromWithArena(
2816
+ ::google::protobuf::MessageLite::internal_visibility(), arena,
2817
+ from._internal_options());
2818
+ }
2819
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2820
+ if (!from._internal_name().empty()) {
2821
+ _this->_internal_set_name(from._internal_name());
2822
+ } else {
2823
+ if (_this->_impl_.name_.IsDefault()) {
2824
+ _this->_internal_set_name("");
2825
+ }
2826
+ }
2827
+ }
2828
+ if (CheckHasBit(cached_has_bits, 0x00000004U)) {
2829
+ if (from._internal_number() != 0) {
2830
+ _this->_impl_.number_ = from._impl_.number_;
2831
+ }
2832
+ }
2833
+ }
2834
+ _this->_impl_._has_bits_[0] |= cached_has_bits;
2835
+ _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
2836
+ from._internal_metadata_);
2837
+ }
2838
+
2839
+ void EnumValue::CopyFrom(const EnumValue& from) {
2840
+ // @@protoc_insertion_point(class_specific_copy_from_start:google.protobuf.EnumValue)
2841
+ if (&from == this) return;
2842
+ Clear();
2843
+ MergeFrom(from);
2844
+ }
2845
+
2846
+
2847
+ void EnumValue::InternalSwap(EnumValue* PROTOBUF_RESTRICT PROTOBUF_NONNULL other) {
2848
+ using ::std::swap;
2849
+ auto* arena = GetArena();
2850
+ ABSL_DCHECK_EQ(arena, other->GetArena());
2851
+ _internal_metadata_.InternalSwap(&other->_internal_metadata_);
2852
+ swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]);
2853
+ _impl_.options_.InternalSwap(&other->_impl_.options_);
2854
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena);
2855
+ swap(_impl_.number_, other->_impl_.number_);
2856
+ }
2857
+
2858
+ ::google::protobuf::Metadata EnumValue::GetMetadata() const {
2859
+ return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full());
2860
+ }
2861
+ // ===================================================================
2862
+
2863
+ void Option::clear_value() {
2864
+ ::google::protobuf::internal::TSanWrite(&_impl_);
2865
+ if (_impl_.value_ != nullptr) _impl_.value_->Clear();
2866
+ ClearHasBit(_impl_._has_bits_[0], 0x00000002U);
2867
+ }
2868
+ Option::Option(::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
2869
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2870
+ : ::google::protobuf::Message(arena, Option_get_class_data()) {
2871
+ #else // PROTOBUF_CUSTOM_VTABLE
2872
+ : ::google::protobuf::Message(arena) {
2873
+ #endif // PROTOBUF_CUSTOM_VTABLE
2874
+ SharedCtor(arena);
2875
+ // @@protoc_insertion_point(arena_constructor:google.protobuf.Option)
2876
+ }
2877
+ PROTOBUF_NDEBUG_INLINE Option::Impl_::Impl_(
2878
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
2879
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Impl_& from,
2880
+ [[maybe_unused]] const ::google::protobuf::Option& from_msg)
2881
+ : _has_bits_{from._has_bits_},
2882
+ _cached_size_{0},
2883
+ name_(arena, from.name_) {}
2884
+
2885
+ Option::Option(
2886
+ ::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
2887
+ const Option& from)
2888
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2889
+ : ::google::protobuf::Message(arena, Option_get_class_data()) {
2890
+
2891
+ #else // PROTOBUF_CUSTOM_VTABLE
2892
+ : ::google::protobuf::Message(arena) {
2893
+ #endif // PROTOBUF_CUSTOM_VTABLE
2894
+ Option* const _this = this;
2895
+ (void)_this;
2896
+ _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
2897
+ from._internal_metadata_);
2898
+ new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from);
2899
+ ::uint32_t cached_has_bits = _impl_._has_bits_[0];
2900
+ _impl_.value_ = (CheckHasBit(cached_has_bits, 0x00000002U))
2901
+ ? ::google::protobuf::Message::CopyConstruct(arena, *from._impl_.value_)
2902
+ : nullptr;
2903
+
2904
+ // @@protoc_insertion_point(copy_constructor:google.protobuf.Option)
2905
+ }
2906
+ PROTOBUF_NDEBUG_INLINE Option::Impl_::Impl_(
2907
+ [[maybe_unused]] ::google::protobuf::internal::InternalVisibility visibility,
2908
+ [[maybe_unused]] ::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
2909
+ : _cached_size_{0},
2910
+ name_(arena) {}
2911
+
2912
+ inline void Option::SharedCtor(::_pb::Arena* PROTOBUF_NULLABLE arena) {
2913
+ new (&_impl_) Impl_(internal_visibility(), arena);
2914
+ _impl_.value_ = {};
2915
+ }
2916
+ Option::~Option() {
2917
+ // @@protoc_insertion_point(destructor:google.protobuf.Option)
2918
+ SharedDtor(*this);
2919
+ }
2920
+ inline void Option::SharedDtor(MessageLite& self) {
2921
+ Option& this_ = static_cast<Option&>(self);
2922
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2923
+ this_.CheckHasBitConsistency();
2924
+ }
2925
+ this_._internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
2926
+ ABSL_DCHECK(this_.GetArena() == nullptr);
2927
+ this_._impl_.name_.Destroy();
2928
+ delete this_._impl_.value_;
2929
+ this_._impl_.~Impl_();
2930
+ }
2931
+
2932
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
2933
+ PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const
2934
+ ::google::protobuf::internal::ClassDataFull Option_class_data_ =
2935
+ Option::InternalGenerateClassData_(Option_globals_._default);
2936
+
2937
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
2938
+ Option::GetClassData() const {
2939
+ ::google::protobuf::internal::PrefetchToLocalCache(&Option_class_data_);
2940
+ ::google::protobuf::internal::PrefetchToLocalCache(Option_class_data_.tc_table);
2941
+ return Option_class_data_.base();
2942
+ }
2943
+ #else
2944
+ PROTOBUF_ATTRIBUTE_WEAK const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL
2945
+ Option::GetClassData() const {
2946
+ ::google::protobuf::internal::PrefetchToLocalCache(&Option_globals_);
2947
+ ::google::protobuf::internal::PrefetchToLocalCache(
2948
+ ::google::protobuf::internal::MessageGlobalsBase::ToParseTableBase(&Option_globals_));
2949
+ return Option_globals_.GetClassData();
2950
+ }
2951
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
2952
+ #ifndef PROTOBUF_MESSAGE_GLOBALS
2953
+ PROTOBUF_CONSTINIT
2954
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const Option::ParseTableT_
2955
+ Option::_table_ =
2956
+ Option::InternalGenerateParseTable_(Option_class_data_.base());
2957
+ #endif // !PROTOBUF_MESSAGE_GLOBALS
2958
+ PROTOBUF_NOINLINE void Option::Clear() {
2959
+ // @@protoc_insertion_point(message_clear_start:google.protobuf.Option)
2960
+ ::google::protobuf::internal::TSanWrite(&_impl_);
2961
+ ::uint32_t cached_has_bits = 0;
2962
+ // Prevent compiler warnings about cached_has_bits being unused
2963
+ (void) cached_has_bits;
2964
+
2965
+ cached_has_bits = _impl_._has_bits_[0];
2966
+ if (BatchCheckHasBit(cached_has_bits, 0x00000003U)) {
2967
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
2968
+ _impl_.name_.ClearNonDefaultToEmpty();
2969
+ }
2970
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
2971
+ ABSL_DCHECK(_impl_.value_ != nullptr);
2972
+ _impl_.value_->Clear();
2973
+ }
2974
+ }
2975
+ _impl_._has_bits_.Clear();
2976
+ _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
2977
+ }
2978
+
2979
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
2980
+ ::uint8_t* PROTOBUF_NONNULL Option::_InternalSerialize(
2981
+ const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
2982
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
2983
+ const Option& this_ = static_cast<const Option&>(base);
2984
+ #else // PROTOBUF_CUSTOM_VTABLE
2985
+ ::uint8_t* PROTOBUF_NONNULL Option::_InternalSerialize(
2986
+ ::uint8_t* PROTOBUF_NONNULL target,
2987
+ ::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
2988
+ const Option& this_ = *this;
2989
+ #endif // PROTOBUF_CUSTOM_VTABLE
2990
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
2991
+ this_.CheckHasBitConsistency();
2992
+ }
2993
+ // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.Option)
2994
+ ::uint32_t cached_has_bits = 0;
2995
+ (void)cached_has_bits;
2996
+
2997
+ cached_has_bits = this_._impl_._has_bits_[0];
2998
+ // string name = 1;
2999
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
3000
+ if (!this_._internal_name().empty()) {
3001
+ const ::std::string& _s = this_._internal_name();
3002
+ ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
3003
+ _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.protobuf.Option.name");
3004
+ target = stream->WriteStringMaybeAliased(1, _s, target);
3005
+ }
3006
+ }
3007
+
3008
+ // .google.protobuf.Any value = 2;
3009
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
3010
+ target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
3011
+ 2, *this_._impl_.value_, this_._impl_.value_->GetCachedSize(), target,
3012
+ stream);
3013
+ }
3014
+
3015
+ if (ABSL_PREDICT_FALSE(this_._internal_metadata_.have_unknown_fields())) {
3016
+ target =
3017
+ ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
3018
+ this_._internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
3019
+ }
3020
+ // @@protoc_insertion_point(serialize_to_array_end:google.protobuf.Option)
3021
+ return target;
3022
+ }
3023
+
3024
+ #if defined(PROTOBUF_CUSTOM_VTABLE)
3025
+ ::size_t Option::ByteSizeLong(const MessageLite& base) {
3026
+ const Option& this_ = static_cast<const Option&>(base);
3027
+ #else // PROTOBUF_CUSTOM_VTABLE
3028
+ ::size_t Option::ByteSizeLong() const {
3029
+ const Option& this_ = *this;
3030
+ #endif // PROTOBUF_CUSTOM_VTABLE
3031
+ // @@protoc_insertion_point(message_byte_size_start:google.protobuf.Option)
3032
+ ::size_t total_size = 0;
3033
+
3034
+ ::uint32_t cached_has_bits = 0;
3035
+ // Prevent compiler warnings about cached_has_bits being unused
3036
+ (void)cached_has_bits;
3037
+
3038
+ ::_pbi::Prefetch5LinesFrom7Lines(&this_);
3039
+ cached_has_bits = this_._impl_._has_bits_[0];
3040
+ if (BatchCheckHasBit(cached_has_bits, 0x00000003U)) {
3041
+ // string name = 1;
3042
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
3043
+ if (!this_._internal_name().empty()) {
3044
+ total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
3045
+ this_._internal_name());
3046
+ }
3047
+ }
3048
+ // .google.protobuf.Any value = 2;
3049
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
3050
+ total_size += 1 +
3051
+ ::google::protobuf::internal::WireFormatLite::MessageSize(*this_._impl_.value_);
3052
+ }
3053
+ }
3054
+ return this_.MaybeComputeUnknownFieldsSize(total_size,
3055
+ &this_._impl_._cached_size_);
3056
+ }
3057
+
3058
+ void Option::MergeImpl(::google::protobuf::MessageLite& to_msg,
3059
+ const ::google::protobuf::MessageLite& from_msg) {
3060
+ auto* const _this = static_cast<Option*>(&to_msg);
3061
+ auto& from = static_cast<const Option&>(from_msg);
3062
+ if constexpr (::_pbi::DebugHardenCheckHasBitConsistency()) {
3063
+ from.CheckHasBitConsistency();
3064
+ }
3065
+ ::google::protobuf::Arena* arena = _this->GetArena();
3066
+ // @@protoc_insertion_point(class_specific_merge_from_start:google.protobuf.Option)
3067
+ ABSL_DCHECK_NE(&from, _this);
3068
+ ::uint32_t cached_has_bits = 0;
3069
+ (void)cached_has_bits;
3070
+
3071
+ cached_has_bits = from._impl_._has_bits_[0];
3072
+ if (BatchCheckHasBit(cached_has_bits, 0x00000003U)) {
3073
+ if (CheckHasBit(cached_has_bits, 0x00000001U)) {
3074
+ if (!from._internal_name().empty()) {
3075
+ _this->_internal_set_name(from._internal_name());
3076
+ } else {
3077
+ if (_this->_impl_.name_.IsDefault()) {
3078
+ _this->_internal_set_name("");
3079
+ }
3080
+ }
3081
+ }
3082
+ if (CheckHasBit(cached_has_bits, 0x00000002U)) {
3083
+ ABSL_DCHECK(from._impl_.value_ != nullptr);
3084
+ if (_this->_impl_.value_ == nullptr) {
3085
+ _this->_impl_.value_ = ::google::protobuf::Message::CopyConstruct(arena, *from._impl_.value_);
3086
+ } else {
3087
+ _this->_impl_.value_->MergeFrom(*from._impl_.value_);
3088
+ }
3089
+ }
3090
+ }
3091
+ _this->_impl_._has_bits_[0] |= cached_has_bits;
3092
+ _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
3093
+ from._internal_metadata_);
3094
+ }
3095
+
3096
+ void Option::CopyFrom(const Option& from) {
3097
+ // @@protoc_insertion_point(class_specific_copy_from_start:google.protobuf.Option)
3098
+ if (&from == this) return;
3099
+ Clear();
3100
+ MergeFrom(from);
3101
+ }
3102
+
3103
+
3104
+ void Option::InternalSwap(Option* PROTOBUF_RESTRICT PROTOBUF_NONNULL other) {
3105
+ using ::std::swap;
3106
+ auto* arena = GetArena();
3107
+ ABSL_DCHECK_EQ(arena, other->GetArena());
3108
+ _internal_metadata_.InternalSwap(&other->_internal_metadata_);
3109
+ swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]);
3110
+ ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena);
3111
+ swap(_impl_.value_, other->_impl_.value_);
3112
+ }
3113
+
3114
+ ::google::protobuf::Metadata Option::GetMetadata() const {
3115
+ return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full());
3116
+ }
3117
+ // @@protoc_insertion_point(namespace_scope)
3118
+ } // namespace protobuf
3119
+ } // namespace google
3120
+ namespace google {
3121
+ namespace protobuf {
3122
+ } // namespace protobuf
3123
+ } // namespace google
3124
+ // @@protoc_insertion_point(global_scope)
3125
+ PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::std::false_type
3126
+ _static_init2_ [[maybe_unused]] =
3127
+ (::_pbi::AddDescriptors(&descriptor_table_google_2fprotobuf_2ftype_2eproto),
3128
+ ::std::false_type{});
3129
+ #include "google/protobuf/port_undef.inc"